This analysis will be based on a secondary data set (FSD3494) collected for exploring Finnish Values and Attitudes Autumn 2020. In the current study, it will be used for analyzing the correlation between Fin’s attitude towards happiness and their self-perceived state of happiness, controlling for a number of other factors.
library(tidyverse)# for wrangling data
library(tidyr)# for wrangling data
library(haven)#to use the function "read_por"
#Convert statistical analysis objects from R into tidy tibbles
#load the data set "FSD3494 EVA Survey on Finnish Values and Attitudes Autumn 2020"
#sport1 <- read_por("daF3510.por")#number 8 sport
#sport1 <- read_por("daF3077e.por")#number 1 welfare
#sport1 <- read_por("daF3172e.por")#number 3 consumer habit#problematic
#sport1 <- read_por("daF3061e.por")#china maternal
#load metadata
fin1 <- read_por("daF3494e.por")
#prepare a factor version of fin1
finF <- as_factor(fin1)# "F" is for "factor".#sportF %>% select(-C4A) %>% select(starts_with("c4"))
#fin1 <- fin1 %>% mutate(across(starts_with("Q7"), ~replace(., . == 6, NA)))#replace "Can't say" with NA
#fin1 <- fin1 %>% mutate(across(starts_with("Q4"), ~replace(., . == 5 | . == 6, NA)))#replace "Can't say" with NA
#fin1 %>% count(Q4) #check if NAs of Q4 has been properly generated.
#finFjoy <- finF %>% select(starts_with("Q7")) #subset columns for attitude of happiness, for numeric data set
#fin1joy <- fin1 %>% select(starts_with("Q7")) #subset columns for attitude of happiness, for factor data set
#fin1 %>% select(starts_with("Q7")) %>% summary()#inspect
#finF %>% select(starts_with("Q7")) %>% summary()#inspectAlthough the variable and level labels are already clear by referring to two versions of data sets, the analysis would be even more efficient with a easy-to-read code book, which will be generated herein.
library(DT)#data table
library(sjlabelled)#to use function get_labels
library(expss)#to use the function var_lab
var_book <- lapply(finF, function(x)var_lab(x)) #pass variable labels into an object
val_book <- lapply(finF, function(x)get_labels(x)) #pass level labels into an object
val_book <- lapply(val_book, function(x)paste(x, collapse="\n***")) # collapse level labels so that each variable
#has all value labels in one grid. Add a new line between level labels so they have better readability.
###discard: codebook <- append(var_book, val_book)
all_levels <- unlist(val_book) #convert list into vector
all_items <- unlist(var_book) #convert list into vector
codebook <- data.frame(all_items, all_levels) # generate a codebook which has variable label as a column and
#level labels as another. Easy for reading.
datatable(codebook, caption = "Table: Code book") #inspect the # codebook It's good, searchable by the aide of "database()". If the code book is searchable via code, it would be nicer.
#Try to made the code book "searchable" with code.
search <- t(codebook) #transpose it
search <- as.data.frame(search) # convert to data frame, pass it to "search".
search %>%
select(Q5) %>%
datatable(caption = "Table: Item and level lables
for Q5") #try "search". Search items starting with Q5Code books are ready now.
Each year the UN releases a World Happiness Report showing which are the best countries to live in the world. 2022’s version has seen Finland come out in the top spot again. That is for the sixth year running. Meanwhile, it is interesting that Finland also has an alcohol problem. A 2020 study reported that, in the population of 5.5 million people in Finland, at least 270,000 Finns had experienced problems resulting from their own alcohol use in at least one area of life during the previous year. As such, I am very interested in digging into fin’s attitude towards happiness, self-perceived happiness, self-perceived alcohol consumption change during Pandemic and their correlations. The flowchart below shows the variables that were selected from meta data set for the present analysis (red box above), and also shows how the missing values were treated (red box below).
library(DiagrammeR)#install.packages("DiagrammeR"), a package for making flowchart
DiagrammeR::grViz("digraph {
graph [layout = dot, rankdir = RR, nodesep = 0.5, ranksep = 0.8, color = crimson, penwidth =5]
node [shape = box, fontcolor = white, fontsize=50, width = 3, height = 1.5, fillcolor = DimGrey, style = filled]
0 [label = 'Metadata', width = 14]
1 [label = 'Q4', width =7]
2 [label = 'Q7_1 to Q7_14', width = 7]
3 [label = 'Q11_4_1 to Q11_4_6', width = 7]
4 [label = 'T1 to T14, BV1, BV2', width = 7]
5 [label = 'Other Variables \n held out', width = 7]
1.5 [label = 'Self-perceived \n happiness (n=2)', width = 7]
2.5 [label = 'Hhappiness \n attitude (n=14)', width = 7]
3.5[label = 'Alcohol abuse \n (n =2)', width = 7]
4.5[label = 'Demographics \n (n = 16)', width = 7]
6[label = 'New raw data set for analysis \n (variables n = 34, cases n = 2019)', width = 15]
s1[label = 'Gernal Case Screening \n (n = 2019)', width = 15]
s2[label = 'Case Screening base on \n variables of major interest \n (n = 2019)', width = 15]
s3[label = 'Final data set for analysis \n (variables n = 34, cases n = 1938)', width = 22.1]
blanka[label = '', width = 0.01, height = 0.01]
blankb[label = '', width = 0.01, height = 0.01]
ss1[label = 'Remove cases \n with ≥ half (34/2 = 17) of \n the reponses being NA (n = 0)', width = 10]
ss2[label = 'Remove cases \n a. with any NA in self- perceived \n happiness (dependent variable in \n modelling) (n = 71) \n b. with half (14/2= 7) of the \nresponses being NA in happiness \n attitude variables (most-interested \n predictors in modelling) (n = 10)', width = 8]
0 -> {1 2 3 4};
{ rank = same;0 -> 5}
subgraph cluster1 {
1 -> 1.5;
2 -> 2.5;
3 -> 3.5;
4 -> 4.5;
{1.5 2.5 3.5 4.5} -> 6;}
subgraph cluster2 {
6 -> s1;
s1 -> blanka[ dir = none, ranksep = 0.05 ];
{ rank = same; blanka -> ss1 [minlen = 2]};
blanka -> s2 [ranksep = 0.05 ];
s2 -> blankb[ dir = none ];
{ rank = same; blankb -> ss2 [minlen = 2]};
blankb -> s3;}
}")Flowchart about variables used (red box above) and missing value treatment (red box below)
Items Q7_1 to Q7_14 asked about participant’s perceived importance of 14 happiness sources. These items reflect their attitude towards happiness. Perhaps there are latent constructs underlying them.
#inspect variable and level labels of items Q7s
search %>% select(starts_with("Q7")) %>%
datatable(caption = "Table: Code book for items about happiness attitude",
class = 'cell-border stripe') #inspect value counts of Q7s
fin1 %>% select (starts_with("Q7")) %>% sapply(.,function(x)table(x)) ## Q7_1 Q7_2 Q7_3 Q7_4 Q7_5 Q7_6 Q7_7 Q7_8 Q7_9 Q7_10 Q7_11 Q7_12 Q7_13 Q7_14
## 1 1280 1031 1071 990 139 1386 578 575 542 622 66 139 190 721
## 2 520 706 594 792 319 501 892 830 769 796 264 474 174 698
## 3 141 221 232 194 684 108 359 402 515 484 595 796 284 419
## 4 41 33 53 20 695 6 49 80 129 75 769 454 381 127
## 5 10 10 17 5 141 4 21 22 17 16 262 88 835 28
## 6 27 18 52 18 41 14 120 110 47 26 63 68 155 26
Items Inspecting the code-book and value counts, it is found that “6” denotes “Can’t say”, which should be converted to NA. It is also notable that some items, such as Q7_13, are plagued by missing values. I will treat this issue after variable generation. Besides, the levels starts from “very important” towards “not at all”, which would be more plausible if reversed (from least importance to biggest importance).
library(finalfit)#for missing_glimpse
#convert value 5 in items Q7s into NA
fin1 <- fin1 %>%
mutate(across(starts_with("Q7"), ~replace(., . == 6, NA)))
#inspect value counts after conversion
fin1 %>% select (starts_with("Q7")) %>%
sapply(.,function(x)table(x))## Q7_1 Q7_2 Q7_3 Q7_4 Q7_5 Q7_6 Q7_7 Q7_8 Q7_9 Q7_10 Q7_11 Q7_12 Q7_13 Q7_14
## 1 1280 1031 1071 990 139 1386 578 575 542 622 66 139 190 721
## 2 520 706 594 792 319 501 892 830 769 796 264 474 174 698
## 3 141 221 232 194 684 108 359 402 515 484 595 796 284 419
## 4 41 33 53 20 695 6 49 80 129 75 769 454 381 127
## 5 10 10 17 5 141 4 21 22 17 16 262 88 835 28
#inspect NAs after conversion
fin1 %>% select(starts_with("Q7")) %>%
missing_glimpse() %>%
datatable(caption = "Table: Number of NAs after conversion",
class = 'cell-border stripe')Level “6” has been replaced. The number of NAs was checked and found to be consistent with previous “6”s for each Q7 item. Done!
library(broom)#to diplay tidy table
#pass the values into new columns with new names for better understandability
fin1 <- fin1 %>% mutate(happy_family = 6-Q7_1, #have 6 minus each value so that
happy_social = 6-Q7_2, #the value orders are reversed
happy_love = 6-Q7_3, #(e.g. 5->1, 1->5).
happy_income = 6-Q7_4,
happy_wealth = 6-Q7_5,
happy_health = 6-Q7_6,
happy_likejob = 6-Q7_7,
happy_employed = 6-Q7_8,
happy_learn.expc = 6-Q7_9,
happy_time.hobby = 6-Q7_10,
happy_status = 6-Q7_11,
happy_influence = 6-Q7_12,
happy_religion = 6-Q7_13,
happy_nature = 6-Q7_14)
#inspect new columns
fin1 %>%
select(which(colnames(fin1) == "happy_family") : ncol(fin1)) %>%
datatable(caption = "Table: The data set for analysis",
class = 'cell-border stripe')#I will not further label them since I am going to do factor analysis on them.Item Q4 asked the respondent's self-perceived happiness. It is a one-item question.
#inspect variable and level labels of items Q4
search %>%
select(Q4) %>%
datatable(caption = "Table: Code book about self-perceived happiness")#inspect value counts of Q4
fin1 %>% count(Q4)## # A tibble: 6 × 2
## Q4 n
## <dbl+lbl> <int>
## 1 1 [Very happy] 292
## 2 2 [Fairly happy] 1244
## 3 3 [Not very happy] 350
## 4 4 [Not at all happy] 62
## 5 5 [Can't say] 36
## 6 6 [Don't want to say/assess] 35
Items Inspecting the code-book and value counts, it is found that “5” and “6” denotes “Can’t say” and “Don’t want to say/assess”, respectively, which should be converted to NA.
#convert value 5 in items Q7s into NA
fin1$Q4 <- replace(fin1$Q4, fin1$Q4 >=5, NA)
#inspect value counts after conversion
fin1 %>% count(Q4)## # A tibble: 5 × 2
## Q4 n
## <dbl+lbl> <int>
## 1 1 [Very happy] 292
## 2 2 [Fairly happy] 1244
## 3 3 [Not very happy] 350
## 4 4 [Not at all happy] 62
## 5 NA 71
Now the number of NAs equals to 36+35=71. Done!
library(finalfit)# to use function ff_label
#pass the values into new columns with new names for better understandability
fin1 <- fin1 %>%
mutate(feel_happy = Q4 %>% factor() %>%
fct_recode("very happy" = "1",
"Fairly happy" = "2",
"Not very happy" = "3",
"Not at all happy" = "4") %>%
fct_rev() %>% #reverse the level to get better
# interpretability in modeling
ff_label("self-perceived happiness"))
#create a new binary variable about self-perceieved happiness
fin1 <- fin1 %>%
mutate(if_feel_happy =
case_when(feel_happy == "very happy" ~ "happy",
feel_happy == "Fairly happy" ~ "happy",
feel_happy == "Not very happy" ~ "unhappy",
feel_happy == "Not at all happy" ~ "unhappy") %>%
ff_label("feel happy or unhappy") %>% factor %>%
fct_rev()
)
#inspect new columns
fin1 %>% select(which(colnames(fin1) == "happy_family") : ncol(fin1))## # A tibble: 2,019 × 16
## happy_family happy_…¹ happy…² happy…³ happy…⁴ happy…⁵ happy…⁶ happy…⁷ happy…⁸
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 5 4 5 3 1 5 5 2 5
## 2 5 5 5 5 3 4 4 3 4
## 3 5 5 5 5 2 5 4 4 4
## 4 4 4 4 5 3 4 4 4 4
## 5 5 5 5 5 2 5 4 4 5
## 6 5 4 5 5 2 3 3 4 5
## 7 5 4 5 4 3 5 4 4 4
## 8 5 5 4 4 2 3 4 4 4
## 9 5 3 2 5 2 5 5 5 2
## 10 5 5 5 5 2 5 NA 4 3
## # … with 2,009 more rows, 7 more variables: happy_time.hobby <dbl>,
## # happy_status <dbl>, happy_influence <dbl>, happy_religion <dbl>,
## # happy_nature <dbl>, feel_happy <fct>, if_feel_happy <fct>, and abbreviated
## # variable names ¹happy_social, ²happy_love, ³happy_income, ⁴happy_wealth,
## # ⁵happy_health, ⁶happy_likejob, ⁷happy_employed, ⁸happy_learn.expc
count(fin1, feel_happy)## # A tibble: 5 × 2
## feel_happy n
## <fct> <int>
## 1 Not at all happy 62
## 2 Not very happy 350
## 3 Fairly happy 1244
## 4 very happy 292
## 5 <NA> 71
count(fin1, if_feel_happy)## # A tibble: 3 × 2
## if_feel_happy n
## <fct> <int>
## 1 unhappy 412
## 2 happy 1536
## 3 <NA> 71
Items Q11_4_1 to Q11_4_6 (note that Q11_4_3 does not exist) asked about participant’s experienced or witnessed alcohol abuse from different parties, including themselves, their family, friends and work community.
#inspect variable and level labels of items Q11s
search %>%
select(starts_with("Q11_4")) %>%
datatable(caption = "Table: Code book about alcohol-related questions",
class = 'cell-border stripe')#inspect the levels of alcohol-related items.
fin1 %>% select (starts_with("Q11_4")) %>% sapply(.,function(x)table(x))## Q11_4_1 Q11_4_2 Q11_4_4 Q11_4_5 Q11_4_6
## 0 1943 1667 1533 1809 910
## 1 76 352 486 210 1109
#inspect cases who have alcohol abuse
fin1 %>%
filter(Q11_4_1 == 1) %>% select(starts_with("Q11_4"))## # A tibble: 76 × 5
## Q11_4_1 Q11_4_2 Q11_4_4 Q11_4_5 Q11_4_6
## <dbl+lbl> <dbl+lbl> <dbl+lbl> <dbl+lbl> <dbl+lbl>
## 1 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m…
## 2 1 [Mentioned] 1 [Mentioned] 1 [Mentioned] 1 [Mentioned] 0 [Not m…
## 3 1 [Mentioned] 1 [Mentioned] 1 [Mentioned] 0 [Not mentioned] 0 [Not m…
## 4 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m…
## 5 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m…
## 6 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m…
## 7 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m…
## 8 1 [Mentioned] 0 [Not mentioned] 1 [Mentioned] 0 [Not mentioned] 0 [Not m…
## 9 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m…
## 10 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m…
## # … with 66 more rows
#inspect the contingency of alcohol related items
fin1 %>%
count(Q11_4_1, Q11_4_2, Q11_4_4, Q11_4_5, Q11_4_6) ## # A tibble: 15 × 6
## Q11_4_1 Q11_4_2 Q11_4_4 Q11_4_5 Q11_4_6 n
## <dbl+lbl> <dbl+lbl> <dbl+lbl> <dbl+lbl> <dbl+l> <int>
## 1 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m… 1 [Men… 1109
## 2 0 [Not mentioned] 0 [Not mentioned] 0 [Not mentioned] 1 [Menti… 0 [Not… 133
## 3 0 [Not mentioned] 0 [Not mentioned] 1 [Mentioned] 0 [Not m… 0 [Not… 338
## 4 0 [Not mentioned] 0 [Not mentioned] 1 [Mentioned] 1 [Menti… 0 [Not… 42
## 5 0 [Not mentioned] 1 [Mentioned] 0 [Not mentioned] 0 [Not m… 0 [Not… 232
## 6 0 [Not mentioned] 1 [Mentioned] 0 [Not mentioned] 1 [Menti… 0 [Not… 14
## 7 0 [Not mentioned] 1 [Mentioned] 1 [Mentioned] 0 [Not m… 0 [Not… 62
## 8 0 [Not mentioned] 1 [Mentioned] 1 [Mentioned] 1 [Menti… 0 [Not… 13
## 9 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 0 [Not m… 0 [Not… 33
## 10 1 [Mentioned] 0 [Not mentioned] 0 [Not mentioned] 1 [Menti… 0 [Not… 1
## 11 1 [Mentioned] 0 [Not mentioned] 1 [Mentioned] 0 [Not m… 0 [Not… 11
## 12 1 [Mentioned] 1 [Mentioned] 0 [Not mentioned] 0 [Not m… 0 [Not… 10
## 13 1 [Mentioned] 1 [Mentioned] 0 [Not mentioned] 1 [Menti… 0 [Not… 1
## 14 1 [Mentioned] 1 [Mentioned] 1 [Mentioned] 0 [Not m… 0 [Not… 14
## 15 1 [Mentioned] 1 [Mentioned] 1 [Mentioned] 1 [Menti… 0 [Not… 6
#inspect respondents who have alcohol abuse while none of those who are
#close to them have.
fin1 %>%
select(starts_with("Q11_4")) %>%
filter(if_all(Q11_4_2:Q11_4_5, ~.x == 0) & Q11_4_1 == 1) %>%
datatable(caption = "Table: Respondents who have alcohol abuse
while none of those who are close to them have",
class = 'cell-border stripe')Base on the inspection above, I decide to generate two new variables depicting if a respondent is an alcoholic (generally), and a variable with four levels depicting if a respondent and his/her family is alcoholic(the four levels are : a. an alcoholic from an alcoholic family, b. an alcoholic from a non-alcoholic family, c. non-alcoholic from an alcoholic family, and d. non-alcoholic from a non-alcoholic family).
fin1 <- fin1 %>%
mutate(alco = Q11_4_1 %>%
factor() %>%
fct_recode("No" = "0",
"Yes" = "1") %>%
ff_label("alcoholic"),
x_alco_alcofamily = #variables starting with "x" will not enter data
#set for analysis.
case_when(if_all(Q11_4_1:Q11_4_2, ~.x == 1) ~ "Yes",
if_any(Q11_4_1:Q11_4_2, ~is.na(.x)) ~ NA_character_,
TRUE ~ "No") %>%
factor() %>%
ff_label("an alcoholic with alcoholic family"),
x_alco_nonalcofamily =
case_when((Q11_4_1 == 1 & Q11_4_2 == 0) ~ "Yes",
if_any(Q11_4_1:Q11_4_2, ~is.na(.x)) ~ NA_character_,
TRUE ~ "No") %>%
factor() %>%
ff_label("an alcoholic without alcoholic family"),
x_nonalco_alcofamily =
case_when((Q11_4_1 == 0 & Q11_4_2 == 1) ~ "Yes",
if_any(Q11_4_1:Q11_4_2, ~is.na(.x)) ~ NA_character_,
TRUE ~ "No") %>%
factor() %>%
ff_label("a non-alcoholic with alcoholic family"),
x_non_alco_nonalcofamily =
case_when((Q11_4_1 == 0 & Q11_4_2 == 0) ~ "Yes",
if_any(Q11_4_1:Q11_4_2, ~is.na(.x)) ~ NA_character_,
TRUE ~ "No") %>%
factor() %>%
ff_label("a non-alcoholic with a non-alcoholic family")
)
fin1 <- fin1 %>%
mutate(alco_family_state =
case_when((x_non_alco_nonalcofamily == "Yes") ~ "non_alco_nonalcofamily",
(x_nonalco_alcofamily == "Yes") ~ "nonalco_alcofamily",
(x_alco_nonalcofamily == "Yes") ~ "alco_nonalcofamily",
(x_alco_alcofamily == "Yes") ~ "alco_alcofamily",
TRUE ~ NA_character_)
)
fin1 %>%
select(which(colnames(fin1) == "alco"): ncol(.)) %>%
head() %>%
datatable(caption = "Table: head of alcohol-related variables",
class = 'cell-border stripe')Items T1 to T13 as well as BV1 and BV2 are demographic variables. They are selected into the new data set here.
#inspect demographic variables in code book.
search %>%
select(starts_with("T")|starts_with("BV")) %>%
datatable(class = 'cell-border stripe')#rename and relabel these variables.
finF <- finF %>% mutate(gender = T1 %>%
ff_label("gender"),
age = T2 %>%
ff_label("age"),
resi_population = T3 %>%
ff_label("residence population"),
resi_region = T4 %>%
ff_label("residence region"),
employer = T5 %>%
ff_label("type of employer"),
work_hour = T6 %>%
ff_label("working hours"),
work_contract = T7 %>%
ff_label("work contract"),
education_basic = T8 %>%
ff_label("basic education"),
education_prof = T9 %>%
ff_label("professional education"),
occupation = T10 %>%
ff_label("occupational group"),
industry = T11 %>%
ff_label("current or latest industry of employment"),
union_if = T12 %>%
ff_label("if he/she is a member of a federation of
trade unions/professional organisations"),
party_vote = T13 %>%
ff_label("the party he/she is going to vote fore"),
social_class = T14 %>%
ff_label("social calss"),
househould_income = BV1 %>%
ff_label("househould gross annual income"),
YOB = BV2 %>%
ff_label("year of birth"))part1 <- fin1 %>%
select(FSD_ID,
which(colnames(fin1) == "happy_family"):ncol(.),
-starts_with("x")
)
part2 <- finF %>% select(FSD_ID, gender:YOB)
happyfin <- left_join(part1, part2)
happyfin %>% head## # A tibble: 6 × 35
## FSD_ID happy…¹ happy…² happy…³ happy…⁴ happy…⁵ happy…⁶ happy…⁷ happy…⁸ happy…⁹
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 5 4 5 3 1 5 5 2 5
## 2 2 5 5 5 5 3 4 4 3 4
## 3 3 5 5 5 5 2 5 4 4 4
## 4 4 4 4 4 5 3 4 4 4 4
## 5 5 5 5 5 5 2 5 4 4 5
## 6 6 5 4 5 5 2 3 3 4 5
## # … with 25 more variables: happy_time.hobby <dbl>, happy_status <dbl>,
## # happy_influence <dbl>, happy_religion <dbl>, happy_nature <dbl>,
## # feel_happy <fct>, if_feel_happy <fct>, alco <fct>, alco_family_state <chr>,
## # gender <fct>, age <fct>, resi_population <fct>, resi_region <fct>,
## # employer <fct>, work_hour <fct>, work_contract <fct>,
## # education_basic <fct>, education_prof <fct>, occupation <fct>,
## # industry <fct>, union_if <fct>, party_vote <fct>, social_class <fct>, …
Missing values are present across the included variables. They will be treated to enhance the validity of study by the following rules: For the dependent variable in modelling (respondent’s self-perceived happiness), cases with NA will be removed from analysis; For the most interested independent variables (variables about happiness, n = 14) that are plausibly correlated with demographic variables, any cases with more than half missing values (n of NAs ≥ 7) will be removed from analysis; any missing values for the cases kept will be imputed using Multiple Imputation Chain Equation (MICE) with all the other variables in the whole new data set being the predictors (except for indexing number); For alcohol-related variables and demographic variables, missing values will be kept as it is.
library(naniar)
# Get number of missing values per variable (n and %)
miss_var_summary(happyfin)## # A tibble: 35 × 3
## variable n_miss pct_miss
## <chr> <int> <dbl>
## 1 work_hour 211 10.5
## 2 work_contract 211 10.5
## 3 happy_religion 155 7.68
## 4 happy_likejob 120 5.94
## 5 happy_employed 110 5.45
## 6 feel_happy 71 3.52
## 7 if_feel_happy 71 3.52
## 8 happy_influence 68 3.37
## 9 happy_status 63 3.12
## 10 happy_love 52 2.58
## # … with 25 more rows
# Get number of missing values per participant (n and %)
miss_case_summary(happyfin)## # A tibble: 2,019 × 3
## case n_miss pct_miss
## <int> <int> <dbl>
## 1 1201 18 51.4
## 2 899 16 45.7
## 3 907 16 45.7
## 4 1036 16 45.7
## 5 1372 16 45.7
## 6 232 14 40
## 7 653 14 40
## 8 1377 14 40
## 9 1689 14 40
## 10 1861 14 40
## # … with 2,009 more rows
#happyfin <- happyfin[rowSums(is.na(happyfin[,col_happy]))/14 < 0.5 | rowSums(is.na(fin1joy))/14 == 0,]
#aaa <- fin1joy %>%
# mutate(across(everything(), ~replace(.,rowSums(is.na(.))/14 >= 0.5, NULL)))
#miss_case_summary(fin1joy_nohalfmiss)
#remove cases whose feel_happy is NA
happyfin <- happyfin[!is.na(happyfin$feel_happy),]
summary(happyfin$feel_happy)## Not at all happy Not very happy Fairly happy very happy
## 62 350 1244 292
#remove cases whose items about happiness attitude has half or more missing values.
fin1 %>% select (starts_with("happy")) %>% summary## happy_family happy_social happy_love happy_income happy_wealth
## Min. :1.000 Min. :1.000 Min. :1.000 Min. :1.00 Min. :1.000
## 1st Qu.:4.000 1st Qu.:4.000 1st Qu.:4.000 1st Qu.:4.00 1st Qu.:2.000
## Median :5.000 Median :5.000 Median :5.000 Median :4.00 Median :3.000
## Mean :4.516 Mean :4.357 Mean :4.347 Mean :4.37 Mean :2.808
## 3rd Qu.:5.000 3rd Qu.:5.000 3rd Qu.:5.000 3rd Qu.:5.00 3rd Qu.:3.000
## Max. :5.000 Max. :5.000 Max. :5.000 Max. :5.00 Max. :5.000
## NA's :27 NA's :18 NA's :52 NA's :18 NA's :41
## happy_health happy_likejob happy_employed happy_learn.expc
## Min. :1.000 Min. :1.000 Min. :1.000 Min. :1.000
## 1st Qu.:4.000 1st Qu.:4.000 1st Qu.:3.000 1st Qu.:3.000
## Median :5.000 Median :4.000 Median :4.000 Median :4.000
## Mean :4.625 Mean :4.031 Mean :3.972 Mean :3.857
## 3rd Qu.:5.000 3rd Qu.:5.000 3rd Qu.:5.000 3rd Qu.:5.000
## Max. :5.000 Max. :5.000 Max. :5.000 Max. :5.000
## NA's :14 NA's :120 NA's :110 NA's :47
## happy_time.hobby happy_status happy_influence happy_religion
## Min. :1.00 Min. :1.000 Min. :1.000 Min. :1.000
## 1st Qu.:3.00 1st Qu.:2.000 1st Qu.:2.000 1st Qu.:1.000
## Median :4.00 Median :2.000 Median :3.000 Median :2.000
## Mean :3.97 Mean :2.541 Mean :3.063 Mean :2.197
## 3rd Qu.:5.00 3rd Qu.:3.000 3rd Qu.:4.000 3rd Qu.:3.000
## Max. :5.00 Max. :5.000 Max. :5.000 Max. :5.000
## NA's :26 NA's :63 NA's :68 NA's :155
## happy_nature
## Min. :1.000
## 1st Qu.:3.000
## Median :4.000
## Mean :3.982
## 3rd Qu.:5.000
## Max. :5.000
## NA's :26
col_happy <- fin1 %>% select (starts_with("happy")) %>% colnames()
happyfin <- happyfin[rowSums(is.na(happyfin[,col_happy]))/14 < 0.5 | rowSums(is.na(happyfin[,col_happy]))/14 == 0,] #inspect number of missing values per variable
gg_miss_var(happyfin)#inspect if the presence of missing values for work-related variables correlates
#with age group, using work_hour as example
work_hour_by_age <- happyfin %>% group_by(age) %>%
summarise(number = n())
work_hour_by_age_missing <- happyfin %>%
filter(is.na(work_hour)) %>%
group_by(age) %>%
summarise(number.missing = n())
left_join(work_hour_by_age_missing, work_hour_by_age, by ="age") %>%
mutate(missing.prop_percent = number.missing/number*100) %>%
datatable(colnames = c("proportion of missing(%)" = "missing.prop_percent",
"number of missing values in the age group" = "number.missing",
"age group" = "age",
"number of participants in the age group" = "number"),
caption = "Table: proportion of missing values
of working hours by age group",
class = 'cell-border stripe') %>%
formatRound(columns = 4, digits = 2)It is interesting to find that almost all variables relevant to work, social status and religion suffers from considerable proportion of NAs. This might be the result of a. privacy-related nature of these questions; b. wording of the question being not compatible with some age groups. For example, for the variable about working hours (with biggest number of NAs), respondent under 25 and over 65 years old gave most NAs (24.2% and 12.8%, respectively), indicating young adults might not be able to answer these work-related questions since they are still in college and have not entered industry, and that aged respondents might have already retired and felt confused if they should answer base on their current life stages. These findings suggest rewording of these questions or designing age-specific questions if this survey would be carried out longitudinally.
gg_miss_upset(happyfin)Upset graph for missing values of five varialbes with most NAs
gg_miss_fct(happyfin[,c(col_happy, "work_contract", "work_hour")], fct = happy_employed)Heatmap for missing values of fifteen varialbes with most NAs
The results are compatible with the assumption that there is a substantial number of cases in which some NAs happen to occur across certain variables or certain levels of variables (e.g. the happiness attitude towards being employed was more frequently rated low by those who gave NAs in working hour and/or working contract). Thus, it seems that the data are not missing completely at random. MICE can be a plausible method to impute them.
library(mice)#multiple imputation chain equation
#MICE package requires a logical matrix that defines which data points need
#to be imputed and which not. Firstly, the variables that will be imputed are
#defined. Note that the first column which is indexing number is also included,
#and this is not a problem since there is no missing values in indexing.
where_matrix_imputed <- make.where(happyfin[,1:15])
#Next, the variables that will not be imputed but will be used as predictor for
#imputation are defined here.
where_matrix_nonimputed <- make.where(happyfin[,c(16:ncol(happyfin))],
keyword = "none")
#Combine them to get the final logical matrix
where_matirx <- data.frame(where_matrix_imputed,where_matrix_nonimputed)
#select predictors according to the minimum threshold (0.3) against which the
#absolute correlation in the data is compared.
pred_mat <- quickpred(happyfin, mincor = 0.3)
#execute MICE, with 10 times of imputations, 50 times of iterations, "sample"
#as the imputation method.
happyfin_mice <- mice(happyfin,
m = 10,
maxit = 50,
where = where_matirx,
method="sample",
seed = 6,
predictorMatrix = pred_mat)#summarize the imputation
summary(happyfin_mice)## Class: mids
## Number of multiple imputations: 10
## Imputation methods:
## FSD_ID happy_family happy_social happy_love
## "" "sample" "sample" "sample"
## happy_income happy_wealth happy_health happy_likejob
## "sample" "sample" "" "sample"
## happy_employed happy_learn.expc happy_time.hobby happy_status
## "sample" "sample" "sample" "sample"
## happy_influence happy_religion happy_nature feel_happy
## "sample" "sample" "sample" ""
## if_feel_happy alco alco_family_state gender
## "" "" "" ""
## age resi_population resi_region employer
## "" "" "" ""
## work_hour work_contract education_basic education_prof
## "" "" "" ""
## occupation industry union_if party_vote
## "" "" "" ""
## social_class househould_income YOB
## "" "" ""
## PredictorMatrix:
## FSD_ID happy_family happy_social happy_love happy_income
## FSD_ID 0 0 0 0 0
## happy_family 0 0 1 1 0
## happy_social 0 1 0 1 0
## happy_love 0 1 1 0 0
## happy_income 0 0 0 0 0
## happy_wealth 0 0 0 0 0
## happy_wealth happy_health happy_likejob happy_employed
## FSD_ID 0 0 0 0
## happy_family 0 0 0 0
## happy_social 0 0 0 0
## happy_love 0 0 0 0
## happy_income 0 0 0 1
## happy_wealth 0 0 0 0
## happy_learn.expc happy_time.hobby happy_status happy_influence
## FSD_ID 0 0 0 0
## happy_family 0 0 0 0
## happy_social 0 0 0 0
## happy_love 0 0 0 0
## happy_income 0 0 0 0
## happy_wealth 0 0 1 0
## happy_religion happy_nature feel_happy if_feel_happy alco
## FSD_ID 0 0 0 0 0
## happy_family 0 0 0 0 0
## happy_social 0 0 0 0 0
## happy_love 0 0 0 0 0
## happy_income 0 0 0 0 0
## happy_wealth 0 0 0 0 0
## alco_family_state gender age resi_population resi_region employer
## FSD_ID 0 0 0 0 0 0
## happy_family 0 0 0 0 0 0
## happy_social 0 0 0 0 0 0
## happy_love 0 0 0 0 0 0
## happy_income 0 0 0 0 0 0
## happy_wealth 0 0 0 0 0 0
## work_hour work_contract education_basic education_prof occupation
## FSD_ID 0 0 0 0 0
## happy_family 0 0 0 0 0
## happy_social 0 0 0 0 0
## happy_love 0 0 0 0 0
## happy_income 0 0 0 0 0
## happy_wealth 0 0 0 0 0
## industry union_if party_vote social_class househould_income YOB
## FSD_ID 0 0 0 0 0 0
## happy_family 0 0 0 0 0 0
## happy_social 0 0 0 0 0 0
## happy_love 0 0 0 0 0 0
## happy_income 0 0 0 0 0 0
## happy_wealth 0 0 0 0 0 0
#check the imputation method used per variable
happyfin_mice$meth## FSD_ID happy_family happy_social happy_love
## "" "sample" "sample" "sample"
## happy_income happy_wealth happy_health happy_likejob
## "sample" "sample" "" "sample"
## happy_employed happy_learn.expc happy_time.hobby happy_status
## "sample" "sample" "sample" "sample"
## happy_influence happy_religion happy_nature feel_happy
## "sample" "sample" "sample" ""
## if_feel_happy alco alco_family_state gender
## "" "" "" ""
## age resi_population resi_region employer
## "" "" "" ""
## work_hour work_contract education_basic education_prof
## "" "" "" ""
## occupation industry union_if party_vote
## "" "" "" ""
## social_class househould_income YOB
## "" "" ""
#pass data set happyfin into another object happyfin_raw in case otherwise usage
happyfin_raw <- happyfin
#replace data set happyfin with the last imputed data set in MICE.
happyfin <- mice::complete(happyfin_mice, 10)
#inspect the state of missing values (variables about happiness attitude should
#have none NA)
missing_glimpse(happyfin) %>%
datatable(class = 'cell-border stripe')Variables about happiness attitude now have none NAs. Imputation is done.
Here the variable selection and missing value treatment conducted above are summarized visually for better recording.The flowchart below shows the variables that were selected from meta data set for the present analysis (red box above), and also shows how the missing values were treated (red box below).
library(DiagrammeR)#install.packages("DiagrammeR"), a package for making flowchart
DiagrammeR::grViz("digraph {
graph [layout = dot, rankdir = RR, nodesep = 0.5, ranksep = 0.8, color = crimson, penwidth =5]
node [shape = box, fontcolor = white, fontsize=50, width = 3, height = 1.5, fillcolor = DimGrey, style = filled]
0 [label = 'Metadata', width = 14]
1 [label = 'Q4', width =7]
2 [label = 'Q7_1 to Q7_14', width = 7]
3 [label = 'Q11_4_1 to Q11_4_6', width = 7]
4 [label = 'T1 to T14, BV1, BV2', width = 7]
5 [label = 'Other Variables \n held out', width = 7]
1.5 [label = 'Self-perceived \n happiness (n=2)', width = 7]
2.5 [label = 'Hhappiness \n attitude (n=14)', width = 7]
3.5[label = 'Alcohol abuse \n (n =2)', width = 7]
4.5[label = 'Demographics \n (n = 16)', width = 7]
6[label = 'New raw data set for analysis \n (variables n = 34, cases n = 2019)', width = 15]
s1[label = 'Gernal Case Screening \n (n = 2019)', width = 15]
s2[label = 'Case Screening base on \n variables of major interest \n (n = 2019)', width = 15]
s3[label = 'Final data set for analysis \n (variables n = 34, cases n = 1938)', width = 22.1]
blanka[label = '', width = 0.01, height = 0.01]
blankb[label = '', width = 0.01, height = 0.01]
ss1[label = 'Remove cases \n with ≥ half (34/2 = 17) of \n the reponses being NA (n = 0)', width = 10]
ss2[label = 'Remove cases \n a. with any NA in self- perceived \n happiness (dependent variable in \n modelling) (n = 71) \n b. with half (14/2= 7) of the \nresponses being NA in happiness \n attitude variables (most-interested \n predictors in modelling) (n = 10)', width = 8]
0 -> {1 2 3 4};
{ rank = same;0 -> 5}
subgraph cluster1 {
1 -> 1.5;
2 -> 2.5;
3 -> 3.5;
4 -> 4.5;
{1.5 2.5 3.5 4.5} -> 6;}
subgraph cluster2 {
6 -> s1;
s1 -> blanka[ dir = none, ranksep = 0.05 ];
{ rank = same; blanka -> ss1 [minlen = 2]};
blanka -> s2 [ranksep = 0.05 ];
s2 -> blankb[ dir = none ];
{ rank = same; blankb -> ss2 [minlen = 2]};
blankb -> s3;}
}")Flowchart about variables used (red box above) and missing value treatment (red box below)
There are 14 items about Fin’s attitude of happiness that each captures one aspect (e.g. about family, love, wealth, health). There might be latent constructs underlying them that minimize the shared variances among them. A factor analysis will be carried out to explore these latent constructs. If there is any, factor scores will be generated for each construct, facilitating the subsequent modeling about perceived happiness.
library(psych)
happyscale <- happyfin[,1:15] happyscale %>%
pivot_longer(2:15, names_to = "attitudes", values_to = "scores" ) %>%
ggplot(aes(x = scores)) +
geom_histogram(binwidth = 1) +
facet_wrap(~attitudes)Base on the histogram, it is concluded that most of the variable about happiness attitude are not normally distributed. Hence, the presumption of multi-variate normality is severely violated.
library(patchwork)# arrange graphs
#Select potential moderators for happy attitude.
#a. Age group might be the most plausible one, since people's attitude towards
#Happiness might change with the age. Things important for the students might
#become less important for the retired.
#b. Gender might be another moderator.
happyByModerator <- happyfin %>%
select(1:15, gender, age) %>%
pivot_longer(2:15,
names_to = "items",
values_to = "scores") #for easy plotting, convert to long format
#calculate mean and sd per age group & per item
happyByModerator1 <- happyByModerator %>%
group_by(age, items, gender) %>%
summarise(mean = mean(scores), SD = SD(scores))
#save jitter position to make points and lines jitter simultaneously
jitterposition <- position_jitter(width = 0.1, height = 0.1)
#plot the correlation of age group with happiness attitude scores by gender (mean±sd)
p_mean <- happyByModerator1 %>%
filter(!gender == "Other") %>% #Gender "other" has too small a sample size,
#the sample might not be representative
ggplot(aes(x = age, y = mean, group = gender, color = gender)) +
theme_bw()+
geom_line(alpha = 0.5,
position = jitterposition,
size = 1) +
geom_point(position = jitterposition) +
facet_wrap (~items,
ncol = 5) +
geom_errorbar(aes(ymin = mean-SD, ymax = mean+SD),
alpha = 0.8,
size = 0.5,
width = 0.3,
position = jitterposition) +
theme(axis.text.x = element_text(angle = 90,
hjust = 1,
size = 10,
face = "bold"),
legend.position = "bottom",
axis.title.x = element_blank(),
plot.title = element_text(size = 18),
axis.title.y = element_text(size = 12))+
labs(title =
"Picture A:Correlation of age group with happiness attitude scores by gender (mean±sd)",
y = "Mean and standard deviation of happiness attitude scores")
happyByModerator2 <- happyByModerator %>%
group_by(age, items, gender) %>%
summarise(median = median(scores),
low = quantile(scores, 0.25),
high = quantile(scores, 0.75))
#plot correlation of age group with happiness attitude scores
#by gender (median, Q1,Q3)
p_median <- happyByModerator2 %>%
filter(!gender == "Other") %>%
ggplot(aes(x = age, y = median, group = gender, color = gender)) +
theme_bw()+
geom_line(alpha = 0.5,
position = jitterposition,
size = 1) +
geom_point(position = jitterposition) +
facet_wrap (~items,
ncol = 5) +
geom_errorbar(aes(ymin = low, ymax = high),
alpha = 0.8,
size = 0.5,
width = 0.3,
position = jitterposition) +
theme(axis.text.x = element_text(angle = 90,
hjust = 1,
size = 10,
face = "bold"),
legend.position = "bottom",
axis.title.x = element_blank(),
plot.title = element_text(size = 18),
axis.title.y = element_text(size = 12))+
labs(title =
"Picture B:Correlation of age group with happiness attitude scores by gender (median, Q1,Q3) ",
y = "Median and 1st/3rd quantile of happiness attitude scores")
p_mean/p_medianIt is observed in pic A that male and female do not differ in most happiness attitude items. This is also true if observing by different age group. However, when plotting with median and quantile as picture B, some difference can be seen in love and income items. Here picture B should be more reliable since the non-normally distributed nature of most items. Picture B shows middle-aged females would assign love with higher importance to happiness than their male counterparts (row 2, column 3), and middle and high aged females would have their happiness be less dependent on income than their male counterparts (row 1, column 4). These findings corresponds to our intuitive understanding in the difference of males and females, and this difference might also contribute to the difference in happiness. As such, I will keep this gender variability in analysis without conducting hierarchical analysis.
It is also observed in pic A and B that respondents in different age group’s difference in attitude of happiness always differ in very modest arange (within 1 score unit) except for item about religion (row 2, column 5), where the youngest and oldest in our sample have a difference in median score as large as 2 units, with a sign of positive trending with aging. These findings might be the result of people tending to turn to religion with aging, or might be the result of the new generations are becoming less interested in religion. No matter which, the difference could be the source of difference in perceived happiness. As such, I will keep this age-group variability in analysis without conducting hierarchical analysis.
the factorability of the items was examined. Several well-recognized criteria for the factorability of a correlation were used.
#correlation to examine the factorability
c_matrix <- cor.plot(happyscale[,-1])It was observed that all of the 14 items correlated at least 0.3 with at least one other item except for items about religion and nature, suggesting these two items might not load fairly on the latent constructs. However, considering their formative nature to the the attitude of happiness, they will be kept for analysis.
#perform KMO test for factorability
KMO(c_matrix) ## Kaiser-Meyer-Olkin factor adequacy
## Call: KMO(r = c_matrix)
## Overall MSA = 0.75
## MSA for each item =
## happy_family happy_social happy_love happy_income
## 0.72 0.80 0.77 0.82
## happy_wealth happy_health happy_likejob happy_employed
## 0.63 0.84 0.79 0.75
## happy_learn.expc happy_time.hobby happy_status happy_influence
## 0.78 0.80 0.65 0.77
## happy_religion happy_nature
## 0.60 0.72
The Kaiser-Meyer-Olkin measure of sampling adequacy was .75, indicating middling adequacy according to Kaiser.
#perform bartlett test for factorability
cortest.bartlett(c_matrix, nrow(happyscale[,-1]))## $chisq
## [1] 5340.529
##
## $p.value
## [1] 0
##
## $df
## [1] 91
Bartlett’s test of sphericity was significant (χ2 (91) = 5340.53, p < .0001), suggesting that the null hypothesis that our matrix be equal to an identity matrix was objected, and hence good factorability.
library(GPArotation)
fa.parallel(happyscale[,-1], fa = "fa", fm = "ml", plot = T) ## Parallel analysis suggests that the number of factors = 6 and the number of components = NA
nfactors(c_matrix, n=6, rotate = "oblimin", fm = "pa", n.obs=14)##
## Number of factors
## Call: vss(x = x, n = n, rotate = rotate, diagonal = diagonal, fm = fm,
## n.obs = n.obs, plot = FALSE, title = title, use = use, cor = cor)
## VSS complexity 1 achieves a maximimum of Although the vss.max shows 5 factors, it is probably more reasonable to think about 1 factors
## VSS complexity 2 achieves a maximimum of 0.62 with 5 factors
## The Velicer MAP achieves a minimum of 0.02 with 1 factors
## Empirical BIC achieves a minimum of -178.79 with 1 factors
## Sample Size adjusted BIC achieves a minimum of 9.09 with 6 factors
##
## Statistics by number of factors
## vss1 vss2 map dof chisq prob sqresid fit RMSEA BIC SABIC complex eChisq
## 1 0.51 0.00 0.023 77 8.43 1 11.0 0.51 0 -195 39.7 1.0 24.41
## 2 0.49 0.58 0.026 64 4.41 1 9.4 0.58 0 -164 30.4 1.3 11.89
## 3 0.48 0.58 0.033 52 2.55 1 8.8 0.60 0 -135 23.6 1.5 7.32
## 4 0.50 0.60 0.038 41 1.03 1 8.6 0.62 0 -107 17.7 1.4 3.04
## 5 0.51 0.62 0.049 31 0.41 1 7.9 0.65 0 -81 13.0 1.4 1.06
## 6 0.48 0.58 0.064 22 0.17 1 7.9 0.64 0 -58 9.1 1.6 0.48
## SRMR eCRMS eBIC
## 1 0.098 0.106 -179
## 2 0.068 0.081 -157
## 3 0.054 0.071 -130
## 4 0.035 0.051 -105
## 5 0.020 0.035 -81
## 6 0.014 0.028 -58
The parallel analysis and scree plot (showing 6 factors above eigenvalues of simulated data ) based on correlation matrix suggested 6-factor structure. Meanwhile the VSS is favorable to a five-dimensional interpretation. All other statistics suggest a single dimension. As such, factor structures with 2 to 6 factors will be examined, with specific preference over 5 factor structure.
I will load the variables on 5 and 6 factors based on the result of above analyses. Both varimax and oblimin rotations will be adopted because of the fact that dimension of attitude of happiness is a under-studied area and no presumption could be easily reached. I assumed that there was some latent construct called “attitude of happiness” that is influencing how people answer these questions, and hence principle axis factoring (PAF) was adopted instead of principle component analysis (PCA; on other hand, PCA is orthogonal by nature). Since the assumption of multivariate normality is severely violated, I also did not adopt maximum likelihood factoring.
2.4.1.1 Orthogonal rotation
fa5 <- fa(happyscale[,-1], nfactors = 5, rotate = "varimax", fm = "pa", scores = "regression")
fa5## Factor Analysis using method = pa
## Call: fa(r = happyscale[, -1], nfactors = 5, rotate = "varimax", scores = "regression",
## fm = "pa")
## Standardized loadings (pattern matrix) based upon correlation matrix
## PA3 PA2 PA1 PA4 PA5 h2 u2 com
## happy_family 0.74 0.02 -0.04 0.16 0.16 0.61 0.39 1.2
## happy_social 0.62 0.03 0.23 0.15 0.00 0.46 0.54 1.4
## happy_love 0.68 0.03 0.13 0.11 0.09 0.50 0.50 1.2
## happy_income 0.18 0.03 0.12 0.46 0.02 0.26 0.74 1.5
## happy_wealth 0.04 0.46 0.07 0.23 -0.06 0.28 0.72 1.6
## happy_health 0.18 0.04 0.14 0.38 0.15 0.22 0.78 2.1
## happy_likejob 0.13 0.15 0.36 0.52 -0.01 0.44 0.56 2.1
## happy_employed 0.03 0.13 0.05 0.69 0.09 0.50 0.50 1.1
## happy_learn.expc 0.08 0.06 0.68 0.19 0.08 0.52 0.48 1.2
## happy_time.hobby 0.14 0.04 0.51 0.15 0.08 0.31 0.69 1.4
## happy_status 0.02 1.02 0.24 0.03 0.16 1.12 -0.12 1.2
## happy_influence 0.05 0.26 0.45 0.06 0.10 0.28 0.72 1.8
## happy_religion 0.08 0.10 0.01 0.04 0.34 0.14 0.86 1.3
## happy_nature 0.06 -0.15 0.27 0.12 0.73 0.64 0.36 1.5
##
## PA3 PA2 PA1 PA4 PA5
## SS loadings 1.53 1.40 1.30 1.29 0.76
## Proportion Var 0.11 0.10 0.09 0.09 0.05
## Cumulative Var 0.11 0.21 0.30 0.39 0.45
## Proportion Explained 0.24 0.22 0.21 0.21 0.12
## Cumulative Proportion 0.24 0.47 0.67 0.88 1.00
##
## Mean item complexity = 1.5
## Test of the hypothesis that 5 factors are sufficient.
##
## The degrees of freedom for the null model are 91 and the objective function was 2.76 with Chi Square of 5340.53
## The degrees of freedom for the model are 31 and the objective function was 0.1
##
## The root mean square of the residuals (RMSR) is 0.02
## The df corrected root mean square of the residuals is 0.04
##
## The harmonic number of observations is 1938 with the empirical chi square 147.34 with prob < 4.5e-17
## The total number of observations was 1938 with Likelihood Chi Square = 190.11 with prob < 8.8e-25
##
## Tucker Lewis Index of factoring reliability = 0.911
## RMSEA index = 0.051 and the 90 % confidence intervals are 0.045 0.059
## BIC = -44.55
## Fit based upon off diagonal values = 0.99
fa.diagram(fa5, cut = 0, digits =2, main = "Factor Analysis, Oblimin rotation")print(fa5$loadings,cutoff = 0.3, sort=TRUE)##
## Loadings:
## PA3 PA2 PA1 PA4 PA5
## happy_family 0.743
## happy_social 0.619
## happy_love 0.682
## happy_status 1.015
## happy_learn.expc 0.681
## happy_time.hobby 0.512
## happy_likejob 0.359 0.523
## happy_employed 0.685
## happy_nature 0.726
## happy_income 0.463
## happy_wealth 0.463
## happy_health 0.380
## happy_influence 0.448
## happy_religion 0.342
##
## PA3 PA2 PA1 PA4 PA5
## SS loadings 1.526 1.399 1.302 1.295 0.759
## Proportion Var 0.109 0.100 0.093 0.092 0.054
## Cumulative Var 0.109 0.209 0.302 0.394 0.449
No overloading is detected in Five-factor Structure via orthogonal rotation. Loadings are fairly high on most items, except for religion (loading = 0.35). This is not out of expectation since it was reported that religion has very sophisticated relation with happiness and there are a multitude of types of religions, the attitude towards happiness of which might differ tremendously.
2.4.1.2 Oblique rotation
fa5_obl <- fa(happyscale[,-1], nfactors = 5, rotate = "oblimin", fm = "pa", scores = "regression")
fa5_obl## Factor Analysis using method = pa
## Call: fa(r = happyscale[, -1], nfactors = 5, rotate = "oblimin", scores = "regression",
## fm = "pa")
## Standardized loadings (pattern matrix) based upon correlation matrix
## PA1 PA2 PA4 PA3 PA5 h2 u2 com
## happy_family 0.78 0.01 0.04 -0.14 0.06 0.61 0.39 1.1
## happy_social 0.62 -0.01 0.00 0.20 -0.07 0.46 0.54 1.2
## happy_love 0.70 0.01 -0.04 0.07 0.00 0.50 0.50 1.0
## happy_income 0.14 -0.07 0.44 0.08 -0.02 0.26 0.74 1.3
## happy_wealth 0.02 0.41 0.24 -0.02 -0.15 0.28 0.72 2.0
## happy_health 0.13 -0.01 0.34 0.06 0.12 0.22 0.78 1.6
## happy_likejob 0.06 0.04 0.47 0.31 -0.05 0.44 0.56 1.8
## happy_employed -0.04 0.02 0.72 -0.05 0.05 0.50 0.50 1.0
## happy_learn.expc 0.00 0.03 0.05 0.66 0.09 0.52 0.48 1.0
## happy_time.hobby 0.08 0.02 0.02 0.49 0.08 0.31 0.69 1.1
## happy_status 0.00 1.06 -0.01 0.01 0.00 1.12 -0.12 1.0
## happy_influence 0.00 0.26 -0.03 0.38 0.08 0.28 0.72 1.9
## happy_religion 0.08 0.18 0.01 -0.14 0.32 0.14 0.86 2.1
## happy_nature 0.01 -0.01 0.02 0.05 0.78 0.64 0.36 1.0
##
## PA1 PA2 PA4 PA3 PA5
## SS loadings 1.61 1.44 1.23 1.17 0.82
## Proportion Var 0.12 0.10 0.09 0.08 0.06
## Cumulative Var 0.12 0.22 0.31 0.39 0.45
## Proportion Explained 0.26 0.23 0.20 0.19 0.13
## Cumulative Proportion 0.26 0.49 0.68 0.87 1.00
##
## With factor correlations of
## PA1 PA2 PA4 PA3 PA5
## PA1 1.00 0.09 0.30 0.25 0.22
## PA2 0.09 1.00 0.25 0.29 0.03
## PA4 0.30 0.25 1.00 0.34 0.18
## PA3 0.25 0.29 0.34 1.00 0.28
## PA5 0.22 0.03 0.18 0.28 1.00
##
## Mean item complexity = 1.4
## Test of the hypothesis that 5 factors are sufficient.
##
## The degrees of freedom for the null model are 91 and the objective function was 2.76 with Chi Square of 5340.53
## The degrees of freedom for the model are 31 and the objective function was 0.1
##
## The root mean square of the residuals (RMSR) is 0.02
## The df corrected root mean square of the residuals is 0.04
##
## The harmonic number of observations is 1938 with the empirical chi square 147.34 with prob < 4.5e-17
## The total number of observations was 1938 with Likelihood Chi Square = 190.11 with prob < 8.8e-25
##
## Tucker Lewis Index of factoring reliability = 0.911
## RMSEA index = 0.051 and the 90 % confidence intervals are 0.045 0.059
## BIC = -44.55
## Fit based upon off diagonal values = 0.99
fa.diagram(fa5_obl, cut = 0, digits =2, main = "Factor Analysis, Oblimin rotation")print(fa5_obl$loadings,cutoff = 0.3, sort=TRUE)##
## Loadings:
## PA1 PA2 PA4 PA3 PA5
## happy_family 0.778
## happy_social 0.621
## happy_love 0.700
## happy_status 1.057
## happy_employed 0.720
## happy_learn.expc 0.664
## happy_nature 0.780
## happy_income 0.438
## happy_wealth 0.406
## happy_health 0.340
## happy_likejob 0.468 0.311
## happy_time.hobby 0.488
## happy_influence 0.383
## happy_religion 0.324
##
## PA1 PA2 PA4 PA3 PA5
## SS loadings 1.536 1.392 1.113 1.022 0.783
## Proportion Var 0.110 0.099 0.079 0.073 0.056
## Cumulative Var 0.110 0.209 0.289 0.362 0.418
Correlation coefficients among the factors ranges from 0.09 to 0.34, which are basically low, indicating the appropriateness of orthogonal rotation.
2.4.2.1 Orthogonal rotation
fa6 <- fa(happyscale[,-1], nfactors = 6, rotate = "varimax", fm = "pa", scores = "regression")
fa6## Factor Analysis using method = pa
## Call: fa(r = happyscale[, -1], nfactors = 6, rotate = "varimax", scores = "regression",
## fm = "pa")
## Standardized loadings (pattern matrix) based upon correlation matrix
## PA3 PA2 PA1 PA6 PA5 PA4 h2 u2 com
## happy_family 0.75 0.02 -0.05 0.16 0.17 0.04 0.61 0.386 1.2
## happy_social 0.62 0.04 0.22 0.14 -0.01 0.07 0.46 0.541 1.4
## happy_love 0.68 0.03 0.12 0.11 0.09 0.04 0.50 0.496 1.2
## happy_income 0.17 0.05 0.12 0.54 -0.02 0.03 0.34 0.663 1.3
## happy_wealth 0.03 0.50 0.05 0.22 -0.07 0.06 0.31 0.690 1.5
## happy_health 0.16 0.06 0.14 0.43 0.13 0.04 0.25 0.750 1.8
## happy_likejob 0.14 0.14 0.28 0.36 0.03 0.69 0.72 0.279 2.1
## happy_employed 0.04 0.15 0.03 0.54 0.10 0.29 0.41 0.586 1.8
## happy_learn.expc 0.10 0.08 0.61 0.11 0.11 0.25 0.47 0.527 1.6
## happy_time.hobby 0.14 0.05 0.60 0.20 0.02 -0.05 0.42 0.575 1.4
## happy_status 0.02 0.97 0.23 0.00 0.16 0.06 1.03 -0.026 1.2
## happy_influence 0.06 0.27 0.43 0.02 0.12 0.12 0.29 0.713 2.1
## happy_religion 0.08 0.10 -0.01 0.01 0.40 0.04 0.18 0.823 1.2
## happy_nature 0.06 -0.14 0.30 0.17 0.64 -0.03 0.55 0.446 1.7
##
## PA3 PA2 PA1 PA6 PA5 PA4
## SS loadings 1.53 1.35 1.24 1.08 0.69 0.66
## Proportion Var 0.11 0.10 0.09 0.08 0.05 0.05
## Cumulative Var 0.11 0.21 0.29 0.37 0.42 0.47
## Proportion Explained 0.23 0.21 0.19 0.17 0.11 0.10
## Cumulative Proportion 0.23 0.44 0.63 0.79 0.90 1.00
##
## Mean item complexity = 1.5
## Test of the hypothesis that 6 factors are sufficient.
##
## The degrees of freedom for the null model are 91 and the objective function was 2.76 with Chi Square of 5340.53
## The degrees of freedom for the model are 22 and the objective function was 0.05
##
## The root mean square of the residuals (RMSR) is 0.01
## The df corrected root mean square of the residuals is 0.03
##
## The harmonic number of observations is 1938 with the empirical chi square 65.85 with prob < 2.9e-06
## The total number of observations was 1938 with Likelihood Chi Square = 95.67 with prob < 3.6e-11
##
## Tucker Lewis Index of factoring reliability = 0.942
## RMSEA index = 0.042 and the 90 % confidence intervals are 0.033 0.05
## BIC = -70.85
## Fit based upon off diagonal values = 1
fa.diagram(fa6, cut = 0, digits =2, main = "Factor Analysis, Oblimin rotation")print(fa6$loadings,cutoff = 0.3, sort=TRUE)##
## Loadings:
## PA3 PA2 PA1 PA6 PA5 PA4
## happy_family 0.746
## happy_social 0.619
## happy_love 0.684
## happy_status 0.971
## happy_learn.expc 0.608
## happy_time.hobby 0.600
## happy_income 0.537
## happy_employed 0.544
## happy_nature 0.300 0.640
## happy_likejob 0.356 0.689
## happy_wealth 0.498
## happy_health 0.426
## happy_influence 0.428
## happy_religion 0.397
##
## PA3 PA2 PA1 PA6 PA5 PA4
## SS loadings 1.531 1.354 1.238 1.083 0.689 0.655
## Proportion Var 0.109 0.097 0.088 0.077 0.049 0.047
## Cumulative Var 0.109 0.206 0.295 0.372 0.421 0.468
Some overloading is present (such as influence loads on both PA2 and PA3). “likejob” singly loads on PA1 and also has overloading on PA3. If it were moved to PA3, the structure would become exactly the same with five-factor solutions. Hence, the five-factor structure is preferred over the 6 factor one.
2.4.2.2 Oblique rotation
fa6_obl <- fa(happyscale[,-1], nfactors = 6, rotate = "oblimin", fm = "pa", scores = "regression")
fa6_obl## Factor Analysis using method = pa
## Call: fa(r = happyscale[, -1], nfactors = 6, rotate = "oblimin", scores = "regression",
## fm = "pa")
## Standardized loadings (pattern matrix) based upon correlation matrix
## PA3 PA2 PA1 PA4 PA5 PA6 h2 u2 com
## happy_family 0.78 0.00 -0.01 -0.13 0.05 0.03 0.61 0.386 1.1
## happy_social 0.61 -0.01 0.06 0.19 -0.08 0.00 0.46 0.541 1.2
## happy_love 0.70 0.01 0.01 0.06 0.00 -0.03 0.50 0.496 1.0
## happy_income 0.10 -0.03 0.04 0.15 0.00 0.49 0.34 0.663 1.3
## happy_wealth 0.01 0.46 0.03 0.01 -0.15 0.24 0.31 0.690 1.7
## happy_health 0.10 0.02 0.04 0.09 0.15 0.36 0.25 0.750 1.7
## happy_likejob 0.03 0.00 0.84 0.00 -0.02 0.03 0.72 0.279 1.0
## happy_employed -0.04 0.05 0.33 -0.10 0.10 0.42 0.41 0.586 2.2
## happy_learn.expc 0.00 0.06 0.33 0.43 0.14 -0.10 0.47 0.527 2.3
## happy_time.hobby 0.05 0.05 -0.03 0.59 0.08 0.12 0.42 0.575 1.2
## happy_status 0.00 1.02 -0.01 0.00 0.00 -0.02 1.03 -0.026 1.0
## happy_influence 0.00 0.29 0.14 0.28 0.11 -0.10 0.29 0.713 3.0
## happy_religion 0.08 0.17 0.02 -0.20 0.37 -0.06 0.18 0.823 2.2
## happy_nature 0.01 -0.03 -0.02 0.06 0.73 0.03 0.55 0.446 1.0
##
## PA3 PA2 PA1 PA4 PA5 PA6
## SS loadings 1.58 1.42 1.12 0.86 0.82 0.75
## Proportion Var 0.11 0.10 0.08 0.06 0.06 0.05
## Cumulative Var 0.11 0.21 0.29 0.36 0.41 0.47
## Proportion Explained 0.24 0.22 0.17 0.13 0.13 0.11
## Cumulative Proportion 0.24 0.46 0.63 0.76 0.89 1.00
##
## With factor correlations of
## PA3 PA2 PA1 PA4 PA5 PA6
## PA3 1.00 0.10 0.28 0.20 0.25 0.26
## PA2 0.10 1.00 0.31 0.21 0.08 0.12
## PA1 0.28 0.31 1.00 0.35 0.22 0.41
## PA4 0.20 0.21 0.35 1.00 0.28 0.06
## PA5 0.25 0.08 0.22 0.28 1.00 0.12
## PA6 0.26 0.12 0.41 0.06 0.12 1.00
##
## Mean item complexity = 1.6
## Test of the hypothesis that 6 factors are sufficient.
##
## The degrees of freedom for the null model are 91 and the objective function was 2.76 with Chi Square of 5340.53
## The degrees of freedom for the model are 22 and the objective function was 0.05
##
## The root mean square of the residuals (RMSR) is 0.01
## The df corrected root mean square of the residuals is 0.03
##
## The harmonic number of observations is 1938 with the empirical chi square 65.85 with prob < 2.9e-06
## The total number of observations was 1938 with Likelihood Chi Square = 95.67 with prob < 3.6e-11
##
## Tucker Lewis Index of factoring reliability = 0.942
## RMSEA index = 0.042 and the 90 % confidence intervals are 0.033 0.05
## BIC = -70.85
## Fit based upon off diagonal values = 1
fa.diagram(fa6_obl, cut = 0, digits =2, main = "Factor Analysis, Oblimin rotation")print(fa6_obl$loadings,cutoff = 0.3, sort=TRUE)##
## Loadings:
## PA3 PA2 PA1 PA4 PA5 PA6
## happy_family 0.779
## happy_social 0.614
## happy_love 0.699
## happy_status 1.017
## happy_likejob 0.835
## happy_time.hobby 0.587
## happy_nature 0.728
## happy_income 0.494
## happy_wealth 0.458
## happy_health 0.357
## happy_employed 0.335 0.419
## happy_learn.expc 0.334 0.430
## happy_influence
## happy_religion 0.371
##
## PA3 PA2 PA1 PA4 PA5 PA6
## SS loadings 1.507 1.364 0.950 0.743 0.768 0.645
## Proportion Var 0.108 0.097 0.068 0.053 0.055 0.046
## Cumulative Var 0.108 0.205 0.273 0.326 0.381 0.427
The overloading is also present and correlations between factors are still not high (0.05 to 0.44, more than a half below 0.2), indicating the inappropriateness of using oblique rotation.
The five-factor structure with orthogonal rotation is the most preferred factor solution for fin’s attitude of happiness. PA1 corresponds to autonomy of life; PA2 corresponds to accomplishment; PA3 corresponds to positive relationships; PA4 corresponds to productivity (health is the premise for productivity); PA5 corresponds to mindfulness.
#generating factor scores
happyScores <- as.data.frame(
factor.scores(happyscale[,-1], fa5)$scores) %>%
mutate(FSD_ID = happyscale$FSD_ID) %>%
rename(autonomy = PA1,
accomplishment = PA2,
relationship = PA3,
productivity= PA4,
mindfulness = PA5)
happyScores <- round(happyScores, 2)
#merge the happyScores data set with happyfin
happyfin <- full_join(happyfin, happyScores)
#inspect
happyfin %>% select(relationship : ncol(happyfin)) %>% head## relationship accomplishment autonomy productivity mindfulness
## 1 0.59 -0.94 1.23 -1.71 1.18
## 2 1.03 0.38 0.06 -0.89 0.23
## 3 0.83 -0.64 0.31 0.20 0.63
## 4 -0.74 1.40 0.30 -0.27 0.45
## 5 0.68 1.17 1.29 -0.45 1.07
## 6 0.49 0.41 0.87 -1.05 -0.05
2.5.2.1 examine distributions
happyScores %>%
pivot_longer(relationship:mindfulness,
names_to = "factors",
values_to = "scores") %>%
ggplot(aes(x = scores, fill = factors)) +
geom_histogram() +
facet_wrap(~factors) +
theme(legend.position = "none")From the histograms, it is observed that accomplishment and autonomy is basically noramlly distributed, while mindfulness, productivity and relationship are negatively skewed to different degrees.
2.5.2.2 modify distributions
In logistic regression, no presumption of multivariate normality is required for independent variables, and hence these factor scores will enter model without any conversion. However, in doing descriptive statistics, variables with different distribution features need to be described via different indicators. It is better to align the factor scores’ distribution before observing them. Here I will use the following formulas to achieve rough normality for all factor scores.
When the negative skewness is moderate \[ \sqrt{\max\left(x+1\right)-x} \]
When the negative skewness is greater \[ \log_{10}{\max\left(x+1\right)-x} \]
When the negative skewness is severe \[ 1/({\max\left(x+1\right)-x}) \]
library(lattice)#histogram fast glimpse
#productivity
happyfin$productivity_trans <- sqrt(max(happyfin$productivity+1) - happyfin$productivity)
histogram(happyfin$productivity_trans)#relationship
happyfin$relationship_trans <- 1/(max(happyfin$relationship+1) - happyfin$relationship)
histogram(happyfin$relationship_trans)#mindfullness
happyfin$mindfulness_trans <- sqrt(max(happyfin$mindfulness+1) - happyfin$mindfulness)
#happyfin$mindfulness_trans <- log10(max(happyfin$mindfulness+1) - happyfin$mindfulness)
#happyfin$mindfulness_trans <- 1/(max(happyfin$mindfulness+1) - happyfin$mindfulness)
histogram(happyfin$mindfulness_trans)#check the transformed factor scores
happyfin %>%
pivot_longer(c(accomplishment, autonomy, mindfulness_trans, productivity_trans, relationship_trans),
names_to = "factors",
values_to = "scores") %>%
ggplot(aes(x = scores, fill = factors)) +
geom_histogram() +
facet_wrap(~factors) +
theme(legend.position = "none")Now I get the transformed factor scores (productivity_trans, relationship_trans, mindfulness_trans), which are roughly normally distributed. They will be used for relevant descriptive statistics.
2.5.2.3 examine the correlation between happiness-related factor scores and levels of perceived happiness by happiness attitudes
This is examined to find out if self-perceived happiness is correlated with any happiness attitude.
happyfin %>% filter(!gender == "Other") %>%
select(c(accomplishment, autonomy, mindfulness_trans, productivity_trans, relationship_trans), feel_happy, if_feel_happy, gender) %>%
pivot_longer(accomplishment:relationship_trans,
names_to = "factors",
values_to = "scores") %>%
ggplot(aes(x= as.integer(feel_happy), y = scores)) +
stat_summary(fun.data = "mean_sdl",
fun.args = list(mult=1),
geom = "ribbon",
fill = "#EB5286",
alpha = .3) +
stat_summary(fun.data = "mean_sdl",
fun.args = list(mult=1),
geom = "pointrange") +
facet_wrap(~ factors) +
theme(axis.text.x = element_text(size = 10),
axis.title.x = element_text(size = 15))+
labs(x = "Levels of perceived happiness \n from 1 to 4: not at all happy, not very happy, fairly happy and very happy",
caption = "Note: The error bars cover mean +/- 1sd")It can be observed that the emphasis on attitudes productivity, relationship or mindfulness leads to no notable change in perceived happiness. Increased emphasis on autonomy might lead to increased perceived happiness. The emphasis on accomplishment seems to have a non-linear effect on perceived happiness. Those who are extremely unhappy tending to highlight accomplishment, while those who are moderately unhappy will not give too much emphasis on it.
2.5.2.4 generate new variables about happiness attitude emphasis
Based on the findings above, we might draw to a preliminary conclusion that the emphasis on some of the aspects of happiness (autonomy and/or accomplishment) attitude would contribute to the change of perceived happiness. As such, I will generate two new variables that depict if an individual’s type of happiness attitude emphasis include autonomy and accomplishment, respectively (base on if the score is over 0). Note that raw factor scores will be used here rather than the ones transformed for normality.
happyfin <- happyfin %>%
mutate(if_autonomy =
#generate a variable about if autonomy is emphasized.
case_when(autonomy>0~ "1",
TRUE ~ "0"),
if_accomplishment =
#generate a variable about if accomplishment is emphasized.
case_when(accomplishment>0~ "1",
TRUE ~ "0" )
)
p_autonomy <- happyfin %>%
ggplot(aes(x = if_autonomy, fill = feel_happy)) +
geom_bar (position = "fill") +
theme(legend.position = "none")
p_accomplishment <- happyfin %>%
ggplot(aes(x = if_accomplishment, fill = feel_happy)) +
geom_bar (position = "fill")
p_autonomy+p_accomplishment
It is interesting to find that if autonomy is emphasized is positively
related to being “very happy”, and is almost not related to being fairly
happy (is it the caveat for being real happy? ^_^); while if
accomplishment is emphasized only slightly increased the proportion of
being “very happy”, but it is greatly related to increased proportion of
being “fairly happy”.
One is not forbidden to have a multitude aspects of happiness to emphasize. Hence, the number of an individual’s emphasized aspects of happiness attitude might also contribute to perceived happiness. Here I will generate another variable recording the number of these aspect for each case.
emph_number <- happyfin %>%
select(1, relationship:mindfulness) %>%
pivot_longer(relationship:mindfulness,
names_to = "factors",
values_to = "scores")%>%
group_by(FSD_ID)%>%
filter(scores > 0) %>%
group_by(FSD_ID) %>%
summarise(n = n())
happyfin <- left_join(happyfin, emph_number) #join the data sets
happyfin <- happyfin %>% rename("attitude_emph_num" = "n") #rename it
#check the new variable's relation with perceived happiness
happyfin %>%
ggplot(aes(x = attitude_emph_num, fill = feel_happy)) +
geom_bar (position = "fill")It is observed that level of perceived happiness is positively correlated with the number of emphasized happiness attitude aspects. This makes sense. People who have more source of happiness will be more likely to have some of these sources fulfilled.
piedata_happy <- happyfin %>%
group_by(feel_happy) %>%
summarise(n = n())
labels_happy <- get_labels(happyfin$feel_happy)
pie(piedata_happy$n, labels_happy)
More than 3/4 Fins are happy. No surprise.
happyfin %>% filter(!gender == "Other") %>%
ggplot(aes(x = age, fill = feel_happy)) +
geom_bar(position ="fill")+
theme(legend.position = "bottom",
axis.text.x = element_text(hjust = 1, angle = 25),
axis.title.x = element_blank()) +
labs(y = "Counts",
title= "Counts of perceived happiness by age& sex") +
facet_wrap(~gender)
Young adults under 25 years old and senior citizens over 56 years old
tend to be happier than adults between 26 and 55. Although this effect
is more pronounced for males, it is also present in females, indicating
age group is appropriate to enter our model.
See 2.5.2.3
happyfin %>% filter(!gender == "Other") %>%
ggplot(aes(x = alco_family_state, fill = feel_happy)) +
geom_bar(position ="fill")+
theme(legend.position = "bottom",
axis.text.x = element_text(hjust = 1, angle = 25),
axis.title.x = element_blank()) +
labs(y = "Counts",
title= "Counts of perceived happiness by alcohol use& sex") +
facet_wrap(~gender)A non-alcoholic from a non-alcoholic family is positive related to being very and fairly happy. An alcoholic from an alcoholic family has higher odds being unhappy. These effects are consistent across different gender.
happyfin %>% filter(!gender == "Other") %>%
ggplot(aes(x = resi_population, fill = feel_happy)) +
geom_bar(position ="fill")+
theme(legend.position = "bottom",
axis.text.x = element_text(hjust = 1, angle = 40),
axis.title.x = element_blank()) +
labs(y = "Counts",
title= "Counts of perceived happiness by residential population & sex") +
facet_wrap(~gender)happyfin %>% filter(!gender == "Other") %>%
ggplot(aes(x = employer, fill = feel_happy)) +
geom_bar(position ="fill")+
theme(legend.position = "bottom",
axis.text.x = element_text(hjust = 1, angle = 40),
axis.title.x = element_blank()) +
labs(y = "Counts",
title= "Counts of perceived happiness by residential population type of employer& sex") +
facet_wrap(~gender)happyfin %>% filter(!gender == "Other") %>%
ggplot(aes(x = work_hour, fill = feel_happy)) +
geom_bar(position ="fill")+
theme(legend.position = "bottom",
axis.text.x = element_text(hjust = 1, angle = 40),
axis.title.x = element_blank()) +
labs(y = "Counts",
title= "Counts of perceived happiness by residential population type of work& sex") +
facet_wrap(~gender)happyfin %>% filter(!gender == "Other") %>%
ggplot(aes(x = education_basic, fill = feel_happy)) +
geom_bar(position ="fill")+
theme(legend.position = "bottom",
axis.text.x = element_text(hjust = 1, angle = 40),
axis.title.x = element_blank()) +
labs(y = "Counts",
title= "Counts of perceived happiness by residential population type of basic education& sex") +
facet_wrap(~gender)happyfin %>% filter(!gender == "Other") %>%
ggplot(aes(x = education_prof, fill = feel_happy)) +
geom_bar(position ="fill")+
theme(legend.position = "bottom",
axis.text.x = element_text(hjust = 1, angle = 40),
axis.title.x = element_blank()) +
labs(y = "Counts",
title= "Counts of perceived happiness by residential population type of vocational education& sex") +
facet_wrap(~gender)happyfin %>% filter(!gender == "Other") %>%
ggplot(aes(x = occupation, fill = feel_happy)) +
geom_bar(position ="fill")+
theme(legend.position = "bottom",
axis.text.x = element_text(hjust = 1, angle = 40),
axis.title.x = element_blank()) +
labs(y = "Counts",
title= "Counts of perceived happiness by residential population type of employer& sex") +
facet_wrap(~gender)happyfin## FSD_ID happy_family happy_social happy_love happy_income happy_wealth
## 1 1 5 4 5 3 1
## 2 2 5 5 5 5 3
## 3 3 5 5 5 5 2
## 4 4 4 4 4 5 3
## 5 5 5 5 5 5 2
## 6 6 5 4 5 5 2
## 7 7 5 4 5 4 3
## 8 8 5 5 4 4 2
## 9 9 5 3 2 5 2
## 10 10 5 5 5 5 2
## 11 12 5 3 5 5 4
## 12 13 5 4 5 5 3
## 13 14 5 5 5 5 4
## 14 15 5 5 5 5 1
## 15 16 5 5 5 5 3
## 16 17 4 4 4 5 3
## 17 18 5 4 5 5 4
## 18 19 3 3 3 3 1
## 19 20 5 5 5 5 5
## 20 21 5 3 3 4 2
## 21 22 5 5 5 5 3
## 22 23 5 5 5 5 2
## 23 24 5 5 5 4 2
## 24 25 4 4 4 4 2
## 25 26 5 4 5 5 5
## 26 28 5 5 5 5 3
## 27 29 5 5 5 5 5
## 28 30 5 3 5 5 2
## 29 31 4 3 5 5 4
## 30 32 5 5 5 3 2
## 31 33 4 4 4 4 3
## 32 34 4 4 3 3 3
## 33 35 4 4 3 5 2
## 34 36 5 5 5 4 3
## 35 37 4 3 3 4 5
## 36 38 5 4 4 5 4
## 37 39 4 4 4 4 3
## 38 40 5 5 5 5 5
## 39 41 5 5 4 4 3
## 40 42 5 5 4 4 2
## 41 43 5 4 3 5 3
## 42 44 5 4 5 4 2
## 43 45 2 4 4 4 4
## 44 46 5 5 5 5 3
## 45 47 5 5 5 5 3
## 46 48 5 5 5 5 2
## 47 49 5 4 5 4 3
## 48 50 5 4 2 5 2
## 49 51 5 5 4 5 3
## 50 52 5 5 4 5 3
## 51 53 5 5 5 5 2
## 52 54 5 4 5 4 4
## 53 55 5 4 5 4 2
## 54 56 4 3 4 4 3
## 55 57 4 4 4 4 4
## 56 58 5 4 5 5 2
## 57 59 5 4 5 4 3
## 58 60 4 5 4 4 2
## 59 61 5 5 5 4 3
## 60 62 5 4 5 5 3
## 61 63 3 4 4 4 3
## 62 64 5 4 4 4 1
## 63 65 5 5 5 4 3
## 64 66 4 4 4 4 4
## 65 67 5 4 4 5 2
## 66 68 5 3 5 5 2
## 67 69 5 5 5 5 2
## 68 70 4 4 5 5 3
## 69 71 5 5 5 5 2
## 70 72 5 5 5 5 3
## 71 73 5 4 5 4 3
## 72 74 4 3 4 5 2
## 73 76 5 5 5 5 3
## 74 77 3 3 3 3 2
## 75 78 5 5 5 5 3
## 76 79 4 4 4 5 2
## 77 80 4 4 3 4 3
## 78 81 5 5 5 5 2
## 79 82 5 5 3 4 2
## 80 83 5 4 4 4 2
## 81 84 5 4 5 4 1
## 82 85 5 3 3 5 4
## 83 86 4 4 5 5 3
## 84 87 5 5 5 5 3
## 85 88 5 4 5 4 2
## 86 89 5 5 5 5 4
## 87 90 5 4 5 5 2
## 88 91 5 5 4 5 2
## 89 92 4 5 4 4 2
## 90 93 5 4 5 5 4
## 91 94 4 4 4 5 2
## 92 95 5 5 4 5 3
## 93 98 5 4 5 5 4
## 94 99 5 5 5 5 3
## 95 100 4 4 4 4 4
## 96 101 5 5 4 4 3
## 97 102 5 4 5 4 2
## 98 103 5 4 5 5 3
## 99 105 3 3 2 5 4
## 100 106 5 5 5 5 4
## 101 107 5 5 5 5 3
## 102 108 5 4 4 5 5
## 103 109 4 4 4 4 4
## 104 110 4 4 3 4 3
## 105 111 4 4 4 4 2
## 106 112 4 4 4 5 3
## 107 113 5 4 5 5 3
## 108 114 5 5 5 5 4
## 109 115 2 3 3 3 2
## 110 116 5 5 4 4 3
## 111 117 5 5 5 5 3
## 112 118 4 4 3 5 2
## 113 119 5 5 5 5 4
## 114 120 5 5 5 5 3
## 115 121 4 4 4 4 3
## 116 122 5 5 5 5 4
## 117 123 5 3 5 5 5
## 118 124 5 4 4 4 4
## 119 125 5 5 4 4 3
## 120 126 5 5 4 5 1
## 121 127 5 5 5 4 2
## 122 128 4 4 5 4 3
## 123 129 5 4 5 5 2
## 124 130 5 4 5 5 3
## 125 131 4 5 5 5 4
## 126 132 4 4 4 4 1
## 127 133 4 5 4 5 2
## 128 134 4 4 3 4 2
## 129 135 3 3 3 3 2
## 130 136 2 2 1 3 3
## 131 137 4 4 5 4 4
## 132 138 5 5 5 5 3
## 133 139 4 4 5 3 4
## 134 140 4 4 4 4 5
## 135 141 4 3 3 5 1
## 136 142 3 3 3 4 2
## 137 143 5 5 5 4 2
## 138 144 5 5 5 4 3
## 139 145 5 4 4 5 2
## 140 146 5 5 5 5 3
## 141 147 4 4 3 3 2
## 142 148 4 4 4 4 2
## 143 149 3 3 2 5 3
## 144 150 5 4 5 4 3
## 145 151 4 4 4 4 2
## 146 152 4 3 3 3 4
## 147 153 5 5 5 3 1
## 148 154 5 4 5 3 1
## 149 155 5 5 5 5 2
## 150 156 3 3 3 3 2
## 151 157 5 5 5 4 4
## 152 158 2 5 3 5 2
## 153 159 3 3 4 3 3
## 154 160 5 4 5 5 3
## 155 161 5 5 5 5 5
## 156 162 2 2 2 5 1
## 157 163 5 4 5 5 2
## 158 164 5 5 5 4 3
## 159 165 5 5 5 5 2
## 160 166 4 4 4 4 3
## 161 167 4 4 5 3 2
## 162 168 5 4 5 5 4
## 163 169 5 4 5 4 4
## 164 170 4 4 4 4 1
## 165 171 5 5 5 5 2
## 166 172 5 5 5 5 3
## 167 173 5 4 5 4 2
## 168 174 5 4 5 5 5
## 169 175 5 5 5 4 4
## 170 176 5 4 4 4 2
## 171 177 5 5 4 4 2
## 172 178 5 5 5 5 2
## 173 179 5 5 4 5 3
## 174 180 5 5 5 5 1
## 175 181 4 4 4 4 4
## 176 182 4 4 4 4 2
## 177 183 5 5 5 5 3
## 178 184 5 5 4 4 2
## 179 185 5 5 5 4 3
## 180 186 4 4 4 5 4
## 181 187 4 4 4 4 2
## 182 188 5 4 5 4 2
## 183 189 1 4 1 4 2
## 184 190 5 4 4 5 1
## 185 191 5 5 5 5 3
## 186 192 5 5 4 4 3
## 187 193 4 5 4 4 4
## 188 194 5 5 5 5 2
## 189 195 5 5 5 5 3
## 190 196 5 5 5 5 3
## 191 197 5 3 5 5 2
## 192 198 3 3 4 4 2
## 193 199 5 5 5 5 3
## 194 200 5 5 4 4 5
## 195 201 5 5 4 5 3
## 196 202 5 4 4 4 2
## 197 203 5 5 5 5 3
## 198 204 3 5 4 5 2
## 199 205 5 3 4 2 4
## 200 206 5 5 5 5 3
## 201 207 3 4 3 5 2
## 202 208 5 5 5 4 1
## 203 209 5 4 5 4 1
## 204 210 5 5 5 5 3
## 205 211 5 5 5 5 4
## 206 213 5 5 5 5 3
## 207 214 5 5 4 5 2
## 208 215 5 5 5 4 2
## 209 216 5 5 5 4 3
## 210 217 5 5 5 5 4
## 211 218 4 4 4 4 2
## 212 219 5 5 3 5 2
## 213 220 5 5 5 5 3
## 214 221 5 4 5 5 2
## 215 222 4 5 4 4 3
## 216 223 5 5 5 5 3
## 217 224 5 4 5 4 3
## 218 225 5 4 5 5 2
## 219 226 4 4 4 3 2
## 220 227 5 5 4 5 2
## 221 228 5 4 4 5 2
## 222 229 4 4 4 4 4
## 223 230 4 2 4 4 2
## 224 231 5 5 5 5 3
## 225 233 4 4 3 3 2
## 226 234 5 5 4 5 2
## 227 235 4 3 4 3 2
## 228 236 5 5 5 5 2
## 229 237 4 3 3 5 2
## 230 238 5 5 5 4 3
## 231 239 4 4 4 4 3
## 232 240 5 4 5 4 3
## 233 241 2 2 2 5 5
## 234 242 2 3 2 5 2
## 235 243 5 5 5 5 5
## 236 244 5 5 5 5 2
## 237 245 5 5 5 5 5
## 238 246 3 4 3 4 3
## 239 247 4 3 5 4 2
## 240 248 4 5 4 3 2
## 241 249 5 4 4 5 2
## 242 250 4 4 3 4 2
## 243 251 5 5 5 5 3
## 244 252 4 5 3 5 4
## 245 253 4 4 5 4 2
## 246 254 5 5 4 4 2
## 247 255 4 5 4 5 2
## 248 256 5 5 5 4 2
## 249 257 3 3 3 5 2
## 250 258 5 4 3 4 1
## 251 259 5 5 5 5 2
## 252 260 4 4 4 4 3
## 253 261 5 4 4 4 2
## 254 262 5 4 4 5 1
## 255 263 5 5 5 5 3
## 256 265 5 5 4 5 1
## 257 266 5 5 4 4 2
## 258 267 5 5 3 5 3
## 259 268 5 5 5 5 1
## 260 270 5 5 5 5 4
## 261 271 5 5 5 4 2
## 262 272 5 5 3 4 3
## 263 273 4 1 1 5 2
## 264 275 5 5 5 5 2
## 265 276 5 4 5 4 3
## 266 277 5 4 5 5 3
## 267 278 5 5 5 5 5
## 268 280 5 3 3 5 2
## 269 281 4 4 4 4 3
## 270 282 4 4 4 3 2
## 271 283 4 4 4 5 2
## 272 284 5 5 5 5 2
## 273 285 5 4 4 5 3
## 274 286 5 5 5 5 5
## 275 287 5 5 5 5 5
## 276 288 5 5 5 5 2
## 277 289 5 4 4 4 4
## 278 290 4 4 4 5 2
## 279 291 5 5 5 5 2
## 280 292 5 4 4 4 2
## 281 293 4 4 4 4 3
## 282 294 4 4 4 5 5
## 283 295 4 4 3 5 2
## 284 296 4 4 4 5 5
## 285 297 5 5 3 4 4
## 286 298 5 5 5 5 4
## 287 299 4 3 3 4 2
## 288 300 4 4 4 4 2
## 289 301 5 5 5 5 2
## 290 302 4 5 4 5 3
## 291 303 3 5 3 4 2
## 292 304 5 5 4 4 1
## 293 305 5 4 3 4 3
## 294 306 4 4 4 5 2
## 295 307 5 4 5 3 3
## 296 308 4 4 4 4 2
## 297 309 5 5 4 4 4
## 298 310 5 5 5 4 2
## 299 311 5 5 5 4 2
## 300 312 4 4 4 4 3
## 301 315 3 4 3 4 3
## 302 316 5 5 5 5 2
## 303 317 3 4 3 5 4
## 304 318 5 5 5 4 3
## 305 319 5 3 3 5 2
## 306 320 4 5 4 3 2
## 307 321 5 5 5 5 4
## 308 322 3 4 5 5 2
## 309 323 2 3 2 4 3
## 310 324 4 5 4 5 2
## 311 325 5 5 5 5 3
## 312 326 4 4 4 5 3
## 313 327 3 3 3 3 3
## 314 328 4 4 4 4 2
## 315 329 5 5 5 5 5
## 316 330 5 5 5 4 4
## 317 331 4 4 4 4 4
## 318 332 5 4 2 4 3
## 319 333 5 5 5 5 3
## 320 334 4 4 4 3 1
## 321 335 5 4 4 4 2
## 322 336 4 4 4 4 2
## 323 337 3 4 1 5 2
## 324 338 5 5 4 5 2
## 325 339 5 4 4 4 2
## 326 340 4 4 5 4 2
## 327 341 5 5 5 5 3
## 328 342 5 5 5 4 2
## 329 343 4 4 5 5 3
## 330 344 5 4 5 3 1
## 331 345 5 5 5 4 2
## 332 346 4 5 5 3 2
## 333 347 5 4 4 5 2
## 334 348 5 5 5 5 2
## 335 349 4 4 5 5 2
## 336 350 4 5 4 5 2
## 337 351 5 5 5 5 2
## 338 352 4 4 3 4 2
## 339 353 5 5 5 4 2
## 340 354 5 4 5 5 3
## 341 355 5 5 5 5 4
## 342 356 5 4 5 5 4
## 343 357 5 5 5 4 2
## 344 358 5 4 5 5 2
## 345 359 4 4 4 4 3
## 346 360 4 4 3 5 5
## 347 361 4 3 4 5 3
## 348 362 4 4 3 3 2
## 349 363 4 4 3 4 3
## 350 364 3 3 3 3 2
## 351 365 5 5 5 5 4
## 352 366 5 5 5 5 2
## 353 367 4 4 4 5 3
## 354 368 4 5 4 4 3
## 355 369 5 4 5 4 3
## 356 370 4 4 4 4 2
## 357 371 5 4 4 5 2
## 358 372 5 5 5 5 4
## 359 373 4 4 2 5 1
## 360 375 5 5 4 4 2
## 361 376 5 5 5 5 4
## 362 377 5 5 5 4 2
## 363 378 5 5 5 5 5
## 364 379 5 5 5 5 4
## 365 380 5 4 5 3 3
## 366 381 5 5 4 4 3
## 367 382 3 3 3 4 3
## 368 383 5 4 5 3 2
## 369 384 5 5 5 4 3
## 370 385 4 5 4 5 2
## 371 386 3 3 3 4 2
## 372 387 5 3 4 4 3
## 373 388 5 5 5 4 2
## 374 389 4 3 5 4 2
## 375 390 5 5 5 5 4
## 376 391 5 5 4 4 2
## 377 392 4 4 3 4 1
## 378 393 5 5 5 5 3
## 379 394 5 5 4 5 3
## 380 395 5 4 4 5 4
## 381 396 3 3 3 3 2
## 382 397 4 5 4 3 1
## 383 398 5 5 5 5 4
## 384 399 5 5 5 4 2
## 385 400 5 5 5 5 2
## 386 401 5 4 5 4 1
## 387 402 5 5 5 5 2
## 388 403 5 5 5 4 3
## 389 404 3 5 4 3 3
## 390 405 5 5 3 5 2
## 391 406 5 5 5 4 1
## 392 407 5 4 4 4 2
## 393 408 4 4 4 5 3
## 394 409 5 5 5 4 2
## 395 410 5 5 5 5 4
## 396 411 5 5 5 5 3
## 397 412 5 5 5 5 2
## 398 413 4 4 4 5 3
## 399 415 5 4 4 5 4
## 400 416 5 4 4 4 3
## 401 417 5 5 5 3 2
## 402 418 5 4 4 5 3
## 403 419 5 4 5 5 2
## 404 420 5 5 5 5 3
## 405 421 5 5 5 5 2
## 406 422 4 3 3 5 3
## 407 423 5 4 4 4 2
## 408 424 5 5 4 4 3
## 409 425 5 4 4 3 2
## 410 426 5 5 4 4 3
## 411 427 5 5 4 4 3
## 412 428 2 2 2 5 5
## 413 429 4 5 5 4 3
## 414 430 5 5 5 5 3
## 415 431 5 5 5 4 4
## 416 432 5 5 4 4 3
## 417 433 5 5 5 5 3
## 418 434 5 5 4 4 3
## 419 435 4 4 4 4 2
## 420 436 5 5 5 4 3
## 421 437 5 4 5 4 2
## 422 438 4 5 4 4 2
## 423 439 5 4 5 5 4
## 424 440 5 5 5 5 4
## 425 441 5 5 5 5 4
## 426 443 4 4 4 4 1
## 427 444 4 5 4 4 3
## 428 445 5 5 5 5 3
## 429 446 5 4 4 4 3
## 430 447 5 5 4 4 2
## 431 449 5 5 4 4 3
## 432 450 3 4 4 5 2
## 433 451 5 5 5 4 2
## 434 452 5 4 4 4 3
## 435 453 5 5 5 4 2
## 436 454 5 5 5 4 4
## 437 455 5 5 5 4 2
## 438 456 5 5 5 5 4
## 439 457 4 3 3 3 2
## 440 458 4 4 5 5 2
## 441 459 5 4 5 5 3
## 442 460 4 4 4 4 3
## 443 461 5 5 5 5 3
## 444 462 4 4 4 5 3
## 445 463 4 4 3 4 3
## 446 464 5 5 5 5 4
## 447 465 5 4 4 5 2
## 448 466 2 4 3 4 2
## 449 467 5 5 4 5 2
## 450 468 3 5 5 5 2
## 451 469 5 5 5 5 4
## 452 470 5 4 2 5 2
## 453 471 5 5 5 4 4
## 454 472 3 5 4 5 2
## 455 473 5 5 4 4 4
## 456 474 4 4 5 4 2
## 457 475 5 5 5 5 1
## 458 476 3 3 3 4 3
## 459 477 2 2 5 3 2
## 460 478 5 4 4 5 4
## 461 479 5 5 5 4 4
## 462 480 5 5 4 4 2
## 463 481 5 5 5 5 4
## 464 482 5 5 5 5 2
## 465 484 5 4 4 5 3
## 466 485 5 4 4 3 1
## 467 486 4 3 3 5 2
## 468 487 4 5 5 5 4
## 469 488 5 5 5 5 1
## 470 489 5 5 5 5 2
## 471 490 4 3 4 4 2
## 472 491 5 4 3 4 2
## 473 492 5 5 4 5 5
## 474 493 5 5 4 5 2
## 475 494 4 3 4 4 2
## 476 495 5 5 4 4 4
## 477 496 5 5 5 5 2
## 478 497 5 4 5 5 3
## 479 498 5 5 5 5 3
## 480 499 4 4 4 4 3
## 481 500 5 5 5 5 3
## 482 501 4 5 5 4 4
## 483 502 4 4 3 4 2
## 484 503 5 5 5 5 2
## 485 504 5 5 5 5 4
## 486 505 5 5 5 5 3
## 487 506 5 5 4 4 3
## 488 507 5 5 5 5 2
## 489 508 4 3 3 4 2
## 490 509 5 3 4 4 3
## 491 510 3 4 3 4 2
## 492 511 5 4 5 5 2
## 493 512 5 4 5 4 2
## 494 513 5 5 4 5 3
## 495 514 5 5 5 5 3
## 496 515 5 5 5 5 5
## 497 516 5 5 5 5 2
## 498 517 5 5 4 5 5
## 499 518 5 5 5 5 3
## 500 519 5 5 4 4 3
## 501 520 5 4 5 5 4
## 502 522 4 3 3 3 4
## 503 523 4 3 5 5 3
## 504 524 5 5 5 5 3
## 505 525 5 5 5 5 2
## 506 526 5 4 4 5 3
## 507 527 5 4 4 5 2
## 508 528 5 5 5 5 3
## 509 529 5 5 5 5 3
## 510 530 4 5 4 5 2
## 511 532 5 5 5 5 2
## 512 533 5 5 5 5 1
## 513 534 3 5 5 4 2
## 514 535 3 3 3 5 3
## 515 537 5 4 4 5 3
## 516 538 5 5 5 4 3
## 517 539 3 3 3 3 3
## 518 540 5 3 5 5 1
## 519 541 5 5 5 4 2
## 520 542 5 5 4 4 3
## 521 543 5 5 5 5 4
## 522 544 4 4 4 4 4
## 523 545 5 5 4 4 2
## 524 546 5 5 5 5 3
## 525 547 5 5 5 5 2
## 526 548 4 5 5 5 2
## 527 549 5 5 5 5 4
## 528 550 5 5 2 5 5
## 529 551 4 4 4 3 3
## 530 552 5 5 5 5 2
## 531 553 5 5 5 5 3
## 532 554 3 3 3 5 3
## 533 555 1 2 1 3 2
## 534 556 4 5 5 5 1
## 535 557 4 4 5 5 3
## 536 558 5 4 4 5 3
## 537 559 5 3 5 3 5
## 538 560 5 5 5 5 4
## 539 561 5 5 5 5 3
## 540 562 5 5 5 4 2
## 541 563 5 5 5 4 3
## 542 564 5 4 5 4 3
## 543 565 5 5 4 5 2
## 544 566 5 4 5 5 3
## 545 567 4 5 5 5 3
## 546 568 5 4 5 5 2
## 547 569 5 5 4 4 1
## 548 570 4 5 5 5 2
## 549 571 5 5 5 5 3
## 550 572 5 5 5 5 4
## 551 573 4 4 4 4 3
## 552 574 3 3 3 5 3
## 553 575 4 4 4 4 4
## 554 576 4 4 4 3 2
## 555 577 5 4 4 4 4
## 556 578 5 4 5 5 3
## 557 579 5 4 5 5 3
## 558 580 5 5 5 5 3
## 559 581 4 4 4 4 2
## 560 582 4 3 3 4 2
## 561 583 5 4 5 3 3
## 562 584 4 3 3 5 2
## 563 585 5 4 4 4 3
## 564 586 5 5 4 5 2
## 565 587 5 5 5 3 2
## 566 588 5 5 5 5 3
## 567 589 5 5 5 5 4
## 568 590 5 4 4 4 2
## 569 591 5 4 4 4 2
## 570 592 5 5 5 4 2
## 571 593 5 5 5 5 5
## 572 594 4 3 3 3 3
## 573 595 4 4 3 4 2
## 574 596 5 5 5 5 2
## 575 597 5 4 4 4 3
## 576 598 5 5 5 4 2
## 577 599 5 4 5 4 3
## 578 600 5 2 5 5 3
## 579 601 5 5 5 5 4
## 580 602 4 4 3 3 2
## 581 603 5 4 4 4 2
## 582 604 5 4 5 5 4
## 583 605 5 5 5 4 2
## 584 606 4 4 3 5 1
## 585 607 5 4 4 4 4
## 586 608 5 5 5 5 4
## 587 609 5 5 4 4 2
## 588 610 5 3 5 5 3
## 589 611 5 5 5 5 3
## 590 612 5 5 5 4 3
## 591 613 3 3 3 3 2
## 592 614 5 5 5 5 5
## 593 615 5 4 4 5 4
## 594 616 5 5 5 4 2
## 595 617 5 4 5 5 3
## 596 618 5 4 5 5 3
## 597 619 5 5 5 4 2
## 598 620 4 4 5 4 2
## 599 621 5 5 4 4 3
## 600 622 5 5 5 5 4
## 601 623 4 4 4 4 2
## 602 624 2 2 2 4 3
## 603 625 4 3 4 4 3
## 604 626 4 5 5 3 2
## 605 627 4 4 4 5 2
## 606 628 5 4 4 5 2
## 607 629 5 5 5 5 1
## 608 630 5 5 5 5 2
## 609 631 5 5 5 5 2
## 610 632 5 5 5 5 3
## 611 633 5 5 4 5 2
## 612 634 5 4 5 4 2
## 613 635 5 4 4 5 4
## 614 636 5 5 5 4 4
## 615 637 5 5 5 5 3
## 616 638 4 3 4 4 3
## 617 639 5 5 5 5 2
## 618 640 5 5 5 5 5
## 619 641 5 5 5 4 3
## 620 642 5 5 5 5 2
## 621 643 5 5 4 4 1
## 622 644 5 4 5 5 3
## 623 645 5 4 3 4 3
## 624 646 5 5 3 5 3
## 625 647 4 4 5 4 3
## 626 648 4 3 3 4 1
## 627 649 5 5 5 5 5
## 628 650 5 5 5 4 1
## 629 651 3 4 4 5 2
## 630 652 5 5 5 3 3
## 631 654 5 5 5 5 2
## 632 655 5 4 5 5 4
## 633 656 5 4 5 3 3
## 634 657 5 5 5 5 1
## 635 658 4 5 4 3 3
## 636 659 4 4 4 5 3
## 637 660 4 4 4 5 2
## 638 661 4 4 4 5 3
## 639 662 4 4 5 4 5
## 640 663 4 4 4 5 2
## 641 664 5 5 5 5 4
## 642 665 2 3 2 5 4
## 643 666 3 5 3 4 2
## 644 667 5 4 4 5 4
## 645 668 4 4 4 5 4
## 646 669 4 4 5 5 4
## 647 670 4 4 4 5 4
## 648 671 5 5 5 4 3
## 649 672 5 4 5 5 3
## 650 673 3 4 5 4 3
## 651 674 2 3 2 4 2
## 652 675 5 4 4 4 3
## 653 676 5 5 5 5 2
## 654 677 5 5 5 4 3
## 655 678 4 5 4 5 4
## 656 679 5 4 4 4 2
## 657 680 5 5 5 4 1
## 658 681 5 5 5 4 3
## 659 682 4 4 5 5 3
## 660 683 4 5 4 5 5
## 661 684 4 4 4 4 3
## 662 685 4 4 3 4 1
## 663 686 3 4 5 3 2
## 664 687 5 4 4 4 2
## 665 689 5 4 5 5 3
## 666 690 4 4 4 4 3
## 667 691 5 5 4 4 2
## 668 692 5 4 4 4 3
## 669 693 5 5 3 4 3
## 670 694 4 5 5 5 2
## 671 695 5 5 5 5 2
## 672 696 5 4 4 4 2
## 673 697 4 4 4 4 4
## 674 698 5 4 3 4 3
## 675 699 4 4 4 5 5
## 676 700 5 5 5 5 3
## 677 701 5 5 4 4 4
## 678 702 5 5 5 5 2
## 679 703 5 3 5 3 2
## 680 704 3 3 3 3 2
## 681 705 5 5 4 3 2
## 682 706 4 4 4 5 5
## 683 707 5 5 5 4 1
## 684 708 4 4 4 5 5
## 685 709 3 4 2 5 2
## 686 710 3 4 4 4 3
## 687 711 5 5 5 5 2
## 688 712 5 4 4 5 3
## 689 713 4 5 3 3 2
## 690 714 3 3 3 4 4
## 691 715 4 4 4 5 2
## 692 716 5 3 5 5 2
## 693 717 5 5 5 5 1
## 694 718 5 4 4 4 2
## 695 719 4 4 3 4 2
## 696 720 5 4 4 5 2
## 697 721 4 4 5 5 2
## 698 722 3 3 3 4 3
## 699 723 5 5 5 5 4
## 700 724 5 5 5 3 2
## 701 725 3 5 3 5 2
## 702 726 3 4 5 4 2
## 703 727 4 5 4 5 4
## 704 728 5 5 4 5 4
## 705 729 5 5 5 4 1
## 706 730 4 3 5 4 2
## 707 731 5 5 5 4 2
## 708 732 5 5 5 5 3
## 709 733 5 4 5 5 4
## 710 734 4 4 5 4 2
## 711 735 4 4 3 4 4
## 712 736 5 4 4 4 3
## 713 737 4 3 3 4 2
## 714 738 5 5 5 4 2
## 715 739 4 5 3 4 2
## 716 740 5 5 5 4 3
## 717 741 5 5 5 5 3
## 718 742 5 5 5 4 3
## 719 743 5 5 5 5 2
## 720 744 3 3 3 4 3
## 721 745 4 3 3 5 3
## 722 746 5 4 5 3 2
## 723 747 3 3 3 4 3
## 724 748 5 5 5 5 5
## 725 749 5 4 5 5 3
## 726 750 4 4 4 4 4
## 727 751 4 4 5 4 3
## 728 752 5 5 4 4 1
## 729 753 4 4 5 5 2
## 730 754 5 5 5 3 3
## 731 755 5 5 5 5 3
## 732 756 4 4 3 4 1
## 733 757 5 5 5 5 3
## 734 758 5 5 5 4 3
## 735 759 5 5 5 5 2
## 736 760 4 4 4 4 4
## 737 761 4 4 3 4 2
## 738 762 5 4 5 5 1
## 739 763 4 4 4 3 1
## 740 764 5 5 5 5 3
## 741 765 4 4 4 4 3
## 742 766 5 5 5 5 5
## 743 767 5 5 5 5 3
## 744 768 4 5 3 5 3
## 745 769 5 5 5 5 3
## 746 770 4 4 4 4 2
## 747 771 4 4 4 5 2
## 748 772 5 5 5 5 3
## 749 773 5 5 5 5 4
## 750 774 5 4 4 4 2
## 751 775 4 4 4 5 5
## 752 776 5 5 5 5 3
## 753 777 5 5 4 4 2
## 754 778 5 4 5 5 2
## 755 779 4 4 5 4 2
## 756 780 5 5 5 4 3
## 757 781 5 5 5 5 2
## 758 782 4 4 3 5 4
## 759 783 5 3 5 3 2
## 760 784 4 4 4 4 3
## 761 785 4 4 4 4 4
## 762 786 4 4 4 4 3
## 763 787 5 3 4 5 4
## 764 788 5 5 5 5 2
## 765 789 5 5 5 5 4
## 766 790 5 5 5 5 1
## 767 791 3 3 3 4 3
## 768 792 5 5 5 5 2
## 769 793 3 3 3 5 3
## 770 794 3 2 3 3 2
## 771 795 3 4 5 5 3
## 772 796 5 4 5 3 2
## 773 797 4 5 4 5 2
## 774 798 4 4 5 5 5
## 775 799 3 5 5 4 2
## 776 800 4 3 3 5 2
## 777 801 4 4 3 4 4
## 778 802 4 5 4 4 2
## 779 803 3 3 1 4 1
## 780 804 4 4 4 4 3
## 781 805 5 4 5 4 3
## 782 806 4 3 4 4 3
## 783 807 5 5 5 5 3
## 784 808 3 3 3 4 3
## 785 809 5 4 5 4 3
## 786 810 5 3 4 4 3
## 787 811 5 4 5 5 3
## 788 812 5 5 5 5 1
## 789 813 5 5 2 5 1
## 790 814 3 4 4 4 3
## 791 815 5 4 4 4 4
## 792 816 5 3 4 4 3
## 793 818 5 4 5 5 3
## 794 819 5 5 5 4 1
## 795 820 4 5 2 4 3
## 796 821 5 4 4 4 3
## 797 822 4 5 5 3 3
## 798 823 5 5 4 4 4
## 799 824 5 5 5 4 3
## 800 825 4 4 4 3 2
## 801 826 5 5 5 5 4
## 802 827 5 5 5 5 2
## 803 828 3 3 5 4 3
## 804 829 5 5 5 4 3
## 805 830 5 5 4 5 2
## 806 831 5 5 3 4 3
## 807 832 5 5 5 4 3
## 808 833 3 5 5 5 2
## 809 834 5 5 5 4 3
## 810 835 4 4 3 4 2
## 811 836 4 5 4 5 3
## 812 837 4 4 4 4 3
## 813 838 5 4 4 4 3
## 814 839 5 5 5 4 2
## 815 840 4 5 4 4 3
## 816 841 3 5 5 5 2
## 817 842 5 5 5 5 2
## 818 843 3 3 3 4 3
## 819 844 5 4 3 4 2
## 820 845 4 4 4 4 4
## 821 846 5 5 5 5 3
## 822 847 4 3 4 4 3
## 823 848 5 4 2 2 2
## 824 849 5 5 5 5 2
## 825 850 3 4 3 4 2
## 826 851 5 3 5 3 3
## 827 852 5 5 2 5 2
## 828 853 4 4 4 4 3
## 829 854 4 2 3 4 2
## 830 855 5 5 4 5 3
## 831 856 4 4 3 5 2
## 832 857 4 5 5 4 2
## 833 858 5 4 5 5 5
## 834 859 4 5 4 4 3
## 835 860 5 4 5 4 1
## 836 861 4 3 4 5 4
## 837 862 5 5 4 5 2
## 838 863 4 4 4 4 3
## 839 864 5 5 4 5 3
## 840 865 5 4 5 5 4
## 841 866 5 5 5 5 2
## 842 867 5 4 4 5 2
## 843 868 4 3 4 5 3
## 844 869 5 5 5 5 1
## 845 870 5 5 4 3 1
## 846 871 5 4 4 4 2
## 847 873 5 5 5 5 2
## 848 874 5 5 5 5 5
## 849 875 5 4 4 5 2
## 850 876 4 4 5 4 3
## 851 877 5 5 5 5 3
## 852 878 5 5 5 4 5
## 853 879 5 5 5 5 3
## 854 880 4 5 4 5 2
## 855 881 5 5 5 3 2
## 856 882 5 4 5 5 2
## 857 883 5 3 3 4 5
## 858 884 5 5 5 4 2
## 859 885 5 5 5 5 4
## 860 886 5 5 4 4 2
## 861 887 4 4 4 4 2
## 862 888 5 5 4 4 3
## 863 889 5 5 4 5 3
## 864 890 5 4 4 4 3
## 865 891 4 4 4 4 3
## 866 892 4 5 4 2 2
## 867 893 3 4 3 5 1
## 868 894 5 5 5 4 2
## 869 895 4 4 3 4 4
## 870 896 5 5 5 4 2
## 871 897 2 4 4 5 5
## 872 898 5 4 5 5 4
## 873 900 5 4 4 5 3
## 874 901 5 5 3 5 2
## 875 902 5 4 5 5 3
## 876 903 4 4 4 4 4
## 877 904 5 5 5 5 4
## 878 905 3 5 5 4 2
## 879 906 4 5 5 5 2
## 880 908 5 3 5 4 3
## 881 909 5 5 5 5 2
## 882 910 3 4 4 4 4
## 883 911 5 4 5 4 2
## 884 912 5 5 5 5 2
## 885 913 5 4 5 5 5
## 886 914 5 5 5 5 3
## 887 915 5 5 3 5 3
## 888 916 5 5 5 5 2
## 889 917 5 5 5 5 3
## 890 918 3 3 3 4 4
## 891 919 5 4 4 2 2
## 892 920 4 4 5 5 2
## 893 921 4 5 5 5 4
## 894 922 5 5 5 4 2
## 895 923 2 3 4 5 3
## 896 924 5 5 5 5 3
## 897 925 5 5 5 4 2
## 898 926 5 4 4 4 3
## 899 927 4 5 3 5 3
## 900 928 5 4 4 4 3
## 901 929 4 5 5 4 3
## 902 930 4 3 2 5 2
## 903 931 3 2 1 5 1
## 904 932 5 5 5 5 5
## 905 933 4 4 4 4 4
## 906 934 5 5 5 5 4
## 907 935 5 4 4 4 3
## 908 936 5 5 4 4 2
## 909 937 5 5 5 5 3
## 910 938 5 4 4 3 1
## 911 939 5 5 4 4 2
## 912 940 5 4 4 4 3
## 913 941 5 5 5 5 4
## 914 942 5 4 5 5 3
## 915 943 5 4 3 3 3
## 916 944 1 1 1 5 1
## 917 945 4 4 4 4 2
## 918 946 5 5 4 4 4
## 919 947 5 5 4 5 4
## 920 948 5 5 3 4 3
## 921 949 5 5 3 5 1
## 922 950 5 5 5 5 2
## 923 951 5 5 5 5 3
## 924 952 1 4 4 3 4
## 925 953 5 5 5 4 3
## 926 954 5 2 2 3 3
## 927 955 2 3 3 5 2
## 928 956 4 4 4 3 5
## 929 957 5 5 5 5 3
## 930 958 5 4 4 4 2
## 931 959 5 5 5 4 2
## 932 960 5 4 4 5 4
## 933 961 5 5 5 5 4
## 934 962 4 4 3 5 3
## 935 963 4 4 4 4 3
## 936 964 5 4 5 5 2
## 937 965 5 4 5 5 5
## 938 966 4 4 4 4 3
## 939 967 5 5 5 4 3
## 940 968 5 5 5 4 3
## 941 969 4 4 4 5 5
## 942 970 4 4 3 3 1
## 943 971 5 5 4 5 2
## 944 972 5 5 5 5 3
## 945 973 5 5 5 4 2
## 946 975 5 3 4 4 4
## 947 977 5 5 5 5 4
## 948 978 4 5 5 5 1
## 949 979 5 5 5 5 4
## 950 980 4 4 3 5 2
## 951 981 5 4 3 5 2
## 952 982 3 3 3 4 3
## 953 983 4 4 4 5 4
## 954 984 5 5 5 4 2
## 955 985 4 4 4 5 3
## 956 986 5 4 3 4 2
## 957 987 4 4 5 5 2
## 958 988 5 5 5 5 4
## 959 989 4 4 3 4 3
## 960 990 4 4 4 4 2
## 961 991 4 4 3 5 2
## 962 992 5 5 5 5 3
## 963 993 5 3 4 5 5
## 964 994 5 5 5 4 4
## 965 995 5 3 4 4 3
## 966 996 5 4 5 5 2
## 967 997 4 4 4 3 4
## 968 998 5 5 5 5 3
## 969 999 4 4 4 4 4
## 970 1000 4 4 5 5 5
## 971 1001 5 5 4 5 3
## 972 1002 5 5 5 4 1
## 973 1003 5 5 5 4 2
## 974 1004 4 4 4 4 2
## 975 1005 5 5 5 4 2
## 976 1006 4 5 4 5 4
## 977 1007 4 4 4 4 3
## 978 1008 5 5 5 5 2
## 979 1009 5 5 4 4 2
## 980 1010 4 4 3 5 2
## 981 1011 5 4 5 4 5
## 982 1012 5 4 4 5 3
## 983 1013 5 5 5 4 3
## 984 1014 5 4 5 5 3
## 985 1015 5 4 4 4 2
## 986 1016 4 2 4 4 2
## 987 1018 3 3 3 3 1
## 988 1019 5 4 5 4 3
## 989 1020 4 4 2 5 1
## 990 1021 5 5 5 5 2
## 991 1022 4 4 3 5 2
## 992 1023 5 5 4 4 2
## 993 1024 5 4 3 5 3
## 994 1025 5 5 5 5 2
## 995 1026 5 5 5 5 4
## 996 1027 4 3 5 5 2
## 997 1028 5 5 5 5 2
## 998 1030 5 2 4 5 3
## 999 1031 5 5 5 5 2
## 1000 1032 3 5 4 5 2
## 1001 1033 3 3 3 4 3
## 1002 1034 5 5 5 5 3
## 1003 1035 5 5 4 5 3
## 1004 1037 4 5 3 5 1
## 1005 1038 4 5 5 5 5
## 1006 1039 5 4 5 4 3
## 1007 1041 4 4 4 4 5
## 1008 1042 5 3 5 5 5
## 1009 1043 4 4 4 5 4
## 1010 1044 5 5 5 5 1
## 1011 1045 4 3 4 5 5
## 1012 1046 5 5 5 5 5
## 1013 1047 4 5 5 5 2
## 1014 1048 4 4 4 4 3
## 1015 1049 4 3 3 4 3
## 1016 1050 5 5 5 5 4
## 1017 1051 5 5 5 5 1
## 1018 1052 5 4 5 5 3
## 1019 1053 5 5 5 4 4
## 1020 1054 3 3 3 3 2
## 1021 1055 5 5 5 4 2
## 1022 1056 5 4 3 4 2
## 1023 1057 4 3 3 5 3
## 1024 1058 5 5 5 5 3
## 1025 1059 5 3 5 4 2
## 1026 1060 5 5 5 5 3
## 1027 1062 5 4 5 5 2
## 1028 1063 5 4 4 3 2
## 1029 1064 5 5 5 5 5
## 1030 1065 5 5 5 5 3
## 1031 1066 5 5 5 5 1
## 1032 1067 5 5 5 5 2
## 1033 1068 2 5 3 3 2
## 1034 1069 5 4 5 5 3
## 1035 1070 4 4 4 4 2
## 1036 1071 5 4 3 4 2
## 1037 1072 4 5 5 5 2
## 1038 1073 4 4 4 5 2
## 1039 1074 5 5 5 5 2
## 1040 1076 5 5 5 5 4
## 1041 1077 5 5 5 5 5
## 1042 1078 5 5 4 5 2
## 1043 1079 4 4 4 4 2
## 1044 1081 4 5 5 5 2
## 1045 1082 5 5 4 3 1
## 1046 1083 5 4 5 4 1
## 1047 1084 5 4 5 5 4
## 1048 1085 5 4 5 4 4
## 1049 1086 5 4 5 4 2
## 1050 1087 5 4 4 4 3
## 1051 1088 4 5 4 5 2
## 1052 1089 5 5 5 4 3
## 1053 1090 4 3 5 3 5
## 1054 1091 4 4 5 5 2
## 1055 1092 5 5 5 5 5
## 1056 1093 5 3 5 4 2
## 1057 1094 5 4 5 4 3
## 1058 1095 5 5 5 4 2
## 1059 1096 5 4 5 5 3
## 1060 1097 5 4 5 5 4
## 1061 1098 5 5 5 5 4
## 1062 1099 4 4 5 4 3
## 1063 1100 5 3 5 5 2
## 1064 1101 5 5 4 4 2
## 1065 1102 5 5 5 5 4
## 1066 1103 4 4 4 4 4
## 1067 1104 5 5 5 5 3
## 1068 1105 4 4 3 5 3
## 1069 1106 5 5 5 5 2
## 1070 1107 5 4 2 5 2
## 1071 1108 5 3 5 3 3
## 1072 1109 2 4 3 4 4
## 1073 1110 5 5 5 5 2
## 1074 1111 5 5 5 3 3
## 1075 1112 5 5 5 5 2
## 1076 1113 5 4 4 5 3
## 1077 1114 5 5 4 5 2
## 1078 1116 4 4 4 4 3
## 1079 1117 5 5 5 5 2
## 1080 1118 5 5 5 4 2
## 1081 1119 5 5 5 4 4
## 1082 1120 5 4 5 3 5
## 1083 1121 5 3 4 3 3
## 1084 1122 5 4 4 4 3
## 1085 1123 5 5 5 3 2
## 1086 1124 4 3 4 4 3
## 1087 1125 2 3 2 5 2
## 1088 1126 5 5 5 5 3
## 1089 1127 5 5 5 4 3
## 1090 1128 4 4 3 4 3
## 1091 1129 5 5 4 4 2
## 1092 1130 4 4 5 4 3
## 1093 1131 5 5 4 5 2
## 1094 1132 5 5 5 2 2
## 1095 1133 5 4 4 5 2
## 1096 1135 4 4 4 5 3
## 1097 1137 3 2 2 3 1
## 1098 1138 5 4 4 3 2
## 1099 1139 5 5 5 5 4
## 1100 1140 5 5 5 5 5
## 1101 1141 5 5 4 4 3
## 1102 1142 4 4 4 4 2
## 1103 1143 4 4 4 3 2
## 1104 1144 5 5 5 5 2
## 1105 1145 5 4 5 5 2
## 1106 1146 5 3 5 5 1
## 1107 1147 4 4 3 4 2
## 1108 1148 4 4 3 4 3
## 1109 1149 5 5 3 5 5
## 1110 1150 4 4 5 3 4
## 1111 1151 4 3 3 5 1
## 1112 1152 4 4 4 4 2
## 1113 1153 5 5 5 5 2
## 1114 1154 5 5 4 5 1
## 1115 1155 4 3 3 3 2
## 1116 1156 5 5 5 4 3
## 1117 1157 4 4 5 3 4
## 1118 1158 5 5 5 3 3
## 1119 1159 5 4 5 5 2
## 1120 1160 4 4 5 5 2
## 1121 1161 4 5 5 4 2
## 1122 1162 5 5 5 4 5
## 1123 1163 5 5 5 3 3
## 1124 1164 5 5 5 5 3
## 1125 1165 5 3 5 5 2
## 1126 1166 5 4 5 4 3
## 1127 1167 5 4 5 4 2
## 1128 1168 5 4 5 5 2
## 1129 1169 4 5 3 4 3
## 1130 1170 5 5 5 4 2
## 1131 1171 4 5 4 5 3
## 1132 1172 5 5 5 5 4
## 1133 1173 4 5 4 5 3
## 1134 1175 5 5 5 4 4
## 1135 1176 5 5 4 4 3
## 1136 1177 5 5 5 5 2
## 1137 1178 4 2 5 5 3
## 1138 1179 5 4 5 5 2
## 1139 1180 5 5 3 4 4
## 1140 1181 4 4 4 4 3
## 1141 1182 5 4 4 3 2
## 1142 1183 5 5 5 5 2
## 1143 1184 5 5 5 5 3
## 1144 1185 5 5 5 3 2
## 1145 1186 5 3 5 5 3
## 1146 1187 4 3 3 4 3
## 1147 1188 2 5 1 5 2
## 1148 1189 4 3 3 5 1
## 1149 1190 5 4 5 4 4
## 1150 1191 4 5 4 5 2
## 1151 1192 3 3 4 5 5
## 1152 1193 5 5 5 5 2
## 1153 1194 5 4 5 4 2
## 1154 1195 2 2 2 2 2
## 1155 1196 5 3 5 4 2
## 1156 1197 3 5 5 4 2
## 1157 1198 5 5 5 4 2
## 1158 1199 5 5 5 5 2
## 1159 1200 5 5 5 5 4
## 1160 1202 5 4 5 5 4
## 1161 1203 2 3 2 4 3
## 1162 1204 4 5 5 3 2
## 1163 1205 3 3 4 4 2
## 1164 1206 5 5 5 5 3
## 1165 1208 5 5 3 5 4
## 1166 1209 5 4 5 4 3
## 1167 1210 5 5 4 3 2
## 1168 1211 5 2 3 5 2
## 1169 1212 5 5 4 3 3
## 1170 1213 4 5 4 5 2
## 1171 1214 5 4 3 4 3
## 1172 1215 5 5 4 4 4
## 1173 1216 5 5 5 5 3
## 1174 1217 5 5 5 3 4
## 1175 1218 5 1 5 5 1
## 1176 1219 5 5 5 4 1
## 1177 1220 5 5 5 5 5
## 1178 1221 5 5 5 5 3
## 1179 1222 4 4 4 5 4
## 1180 1223 4 4 4 4 3
## 1181 1224 4 4 3 4 2
## 1182 1225 4 4 4 3 3
## 1183 1227 3 4 4 5 3
## 1184 1228 4 4 4 5 3
## 1185 1229 5 3 5 3 3
## 1186 1230 5 5 4 5 5
## 1187 1231 4 3 5 4 1
## 1188 1232 5 5 5 4 3
## 1189 1233 5 4 5 5 1
## 1190 1234 5 4 5 5 3
## 1191 1235 4 4 4 3 2
## 1192 1236 4 5 5 5 1
## 1193 1237 5 5 5 5 4
## 1194 1238 5 5 3 5 2
## 1195 1239 4 3 2 5 2
## 1196 1240 5 5 5 4 3
## 1197 1241 4 3 5 3 3
## 1198 1242 5 3 5 4 2
## 1199 1243 5 5 5 5 4
## 1200 1244 5 5 4 5 2
## 1201 1245 5 4 4 3 2
## 1202 1246 5 4 4 5 3
## 1203 1247 5 5 5 5 3
## 1204 1248 5 4 5 4 3
## 1205 1249 5 4 5 5 3
## 1206 1250 5 5 5 4 1
## 1207 1251 4 4 4 4 4
## 1208 1252 4 4 4 5 4
## 1209 1253 5 5 5 5 1
## 1210 1254 4 5 5 4 3
## 1211 1255 4 4 5 4 3
## 1212 1256 4 4 4 4 2
## 1213 1257 5 5 5 4 4
## 1214 1258 5 5 5 5 4
## 1215 1259 5 5 5 4 3
## 1216 1260 3 5 4 5 3
## 1217 1261 5 4 4 4 3
## 1218 1262 4 5 5 5 4
## 1219 1263 4 4 5 5 2
## 1220 1264 4 4 4 5 4
## 1221 1265 5 4 5 5 3
## 1222 1266 5 5 5 4 3
## 1223 1268 5 1 5 5 1
## 1224 1269 3 4 4 5 3
## 1225 1270 5 5 5 5 2
## 1226 1271 5 5 5 5 1
## 1227 1272 5 5 4 4 3
## 1228 1273 5 5 5 5 3
## 1229 1274 5 4 4 5 3
## 1230 1275 5 5 5 5 2
## 1231 1276 5 5 5 5 4
## 1232 1277 5 5 5 5 4
## 1233 1278 5 5 5 5 3
## 1234 1279 5 5 5 5 4
## 1235 1280 5 5 5 5 3
## 1236 1281 5 4 5 5 2
## 1237 1282 5 5 5 4 2
## 1238 1283 5 5 5 4 2
## 1239 1284 4 4 4 4 4
## 1240 1285 5 5 5 5 2
## 1241 1286 1 4 1 5 2
## 1242 1287 3 4 4 5 2
## 1243 1288 5 4 5 5 2
## 1244 1289 5 4 5 5 5
## 1245 1290 3 3 3 5 2
## 1246 1291 4 4 5 5 4
## 1247 1292 5 5 5 5 5
## 1248 1293 5 5 5 5 5
## 1249 1294 4 3 3 3 3
## 1250 1295 3 5 5 5 1
## 1251 1296 5 4 5 5 3
## 1252 1297 5 5 5 4 2
## 1253 1298 3 4 4 5 3
## 1254 1299 5 4 5 5 1
## 1255 1300 3 3 3 5 3
## 1256 1301 5 5 5 2 3
## 1257 1302 5 5 5 4 2
## 1258 1303 3 4 5 5 4
## 1259 1305 4 4 4 4 3
## 1260 1306 5 4 5 4 3
## 1261 1307 5 5 4 4 2
## 1262 1308 5 5 5 5 2
## 1263 1309 5 4 3 5 5
## 1264 1310 4 3 3 4 3
## 1265 1311 5 4 5 4 3
## 1266 1312 5 5 4 5 4
## 1267 1313 5 5 5 5 3
## 1268 1314 4 3 4 4 4
## 1269 1315 5 5 5 4 3
## 1270 1316 5 4 4 5 3
## 1271 1317 5 4 5 5 4
## 1272 1318 5 5 5 4 3
## 1273 1319 5 5 5 5 4
## 1274 1320 5 5 5 5 3
## 1275 1322 5 5 5 5 4
## 1276 1323 5 4 5 4 3
## 1277 1325 5 5 4 4 2
## 1278 1326 4 4 3 4 4
## 1279 1327 5 4 4 5 2
## 1280 1328 5 5 5 5 5
## 1281 1329 5 4 4 5 3
## 1282 1330 5 5 5 5 2
## 1283 1331 5 5 5 5 5
## 1284 1332 4 5 4 4 3
## 1285 1333 4 5 4 5 4
## 1286 1335 5 5 5 3 3
## 1287 1336 5 5 5 5 4
## 1288 1337 5 4 5 3 3
## 1289 1338 3 3 2 5 2
## 1290 1339 5 5 5 4 4
## 1291 1340 5 5 5 4 2
## 1292 1341 4 4 5 4 3
## 1293 1342 5 5 4 5 5
## 1294 1343 5 5 5 5 2
## 1295 1344 4 5 4 5 2
## 1296 1345 4 4 4 4 3
## 1297 1346 5 5 5 4 2
## 1298 1347 5 5 5 5 3
## 1299 1348 5 5 5 4 2
## 1300 1349 5 5 5 5 3
## 1301 1350 5 4 4 5 2
## 1302 1351 5 5 5 4 2
## 1303 1352 5 4 4 4 2
## 1304 1353 5 5 5 5 3
## 1305 1354 5 5 5 3 3
## 1306 1355 5 5 5 5 3
## 1307 1356 5 4 5 4 2
## 1308 1357 4 4 3 5 2
## 1309 1358 5 4 5 5 4
## 1310 1359 5 5 3 5 1
## 1311 1360 2 2 2 4 2
## 1312 1361 4 5 4 5 3
## 1313 1362 5 5 5 5 4
## 1314 1363 5 5 5 5 3
## 1315 1364 5 5 5 5 4
## 1316 1365 5 5 5 5 3
## 1317 1366 5 5 5 4 4
## 1318 1367 3 3 3 5 2
## 1319 1368 5 5 5 5 5
## 1320 1369 5 5 5 4 2
## 1321 1370 5 5 5 5 3
## 1322 1371 4 4 3 5 3
## 1323 1373 5 1 4 4 3
## 1324 1374 5 5 5 5 3
## 1325 1375 5 5 5 5 2
## 1326 1376 4 4 3 3 4
## 1327 1378 5 5 5 3 1
## 1328 1379 4 4 3 4 4
## 1329 1380 5 1 5 5 3
## 1330 1381 5 4 5 4 3
## 1331 1382 5 5 5 4 3
## 1332 1383 4 5 5 5 2
## 1333 1384 4 4 3 5 2
## 1334 1385 4 4 3 3 2
## 1335 1386 4 4 4 4 2
## 1336 1387 2 3 4 2 2
## 1337 1388 5 5 5 5 5
## 1338 1389 5 5 5 5 4
## 1339 1390 2 2 2 5 2
## 1340 1391 4 4 4 5 4
## 1341 1392 5 2 2 4 1
## 1342 1393 5 5 4 3 2
## 1343 1394 5 5 4 5 3
## 1344 1395 5 4 4 4 1
## 1345 1396 5 5 5 4 3
## 1346 1397 5 5 5 5 3
## 1347 1398 5 4 5 3 1
## 1348 1399 4 4 4 4 3
## 1349 1400 5 5 5 5 2
## 1350 1401 4 4 4 4 2
## 1351 1402 5 5 5 4 4
## 1352 1403 4 5 3 4 3
## 1353 1404 4 4 4 4 2
## 1354 1405 5 5 5 5 3
## 1355 1406 4 5 5 5 3
## 1356 1407 5 3 3 4 3
## 1357 1408 5 5 5 5 3
## 1358 1409 5 5 4 4 3
## 1359 1410 3 3 3 3 2
## 1360 1411 4 4 5 5 4
## 1361 1412 5 5 4 4 2
## 1362 1413 5 5 2 5 2
## 1363 1414 4 4 5 5 4
## 1364 1415 5 5 5 5 2
## 1365 1416 5 5 5 5 3
## 1366 1417 5 4 5 2 1
## 1367 1418 5 5 4 4 3
## 1368 1419 5 5 5 5 2
## 1369 1420 4 4 2 5 2
## 1370 1421 5 5 5 3 2
## 1371 1422 4 3 4 4 3
## 1372 1423 4 4 4 4 4
## 1373 1424 4 4 4 4 3
## 1374 1425 5 5 5 5 3
## 1375 1426 5 5 5 4 3
## 1376 1427 3 3 3 3 3
## 1377 1428 4 4 4 4 3
## 1378 1429 5 4 4 3 2
## 1379 1430 5 4 5 3 3
## 1380 1431 5 5 5 4 3
## 1381 1432 4 1 1 1 3
## 1382 1433 3 2 5 2 1
## 1383 1434 1 5 5 5 2
## 1384 1435 5 3 1 5 5
## 1385 1436 5 5 5 5 5
## 1386 1437 5 4 5 4 3
## 1387 1438 4 3 2 5 3
## 1388 1439 4 4 4 4 3
## 1389 1440 5 5 5 5 5
## 1390 1441 4 4 4 4 2
## 1391 1442 4 5 3 3 2
## 1392 1443 3 3 5 5 1
## 1393 1444 4 4 4 4 4
## 1394 1445 4 4 4 5 2
## 1395 1446 4 2 4 3 2
## 1396 1447 5 3 4 4 3
## 1397 1448 4 3 4 4 2
## 1398 1449 5 3 3 4 4
## 1399 1450 5 2 3 3 3
## 1400 1452 5 5 5 4 3
## 1401 1453 5 4 3 5 2
## 1402 1454 5 4 4 4 1
## 1403 1455 5 4 4 5 2
## 1404 1456 4 4 4 4 4
## 1405 1457 3 3 5 3 4
## 1406 1458 5 4 5 5 2
## 1407 1459 5 4 5 5 5
## 1408 1460 3 2 4 4 3
## 1409 1461 4 4 4 5 2
## 1410 1462 4 5 3 5 4
## 1411 1463 5 5 5 3 3
## 1412 1464 5 4 4 3 2
## 1413 1466 5 5 4 5 3
## 1414 1468 4 5 4 5 3
## 1415 1469 5 5 5 4 2
## 1416 1470 3 5 2 5 2
## 1417 1471 5 5 5 5 5
## 1418 1472 5 5 5 4 2
## 1419 1473 4 4 5 4 3
## 1420 1474 5 4 5 4 2
## 1421 1475 3 5 3 5 3
## 1422 1476 5 4 5 4 2
## 1423 1478 5 5 5 4 4
## 1424 1479 5 5 5 4 4
## 1425 1480 4 5 2 5 3
## 1426 1481 5 5 5 5 2
## 1427 1482 4 4 4 5 2
## 1428 1483 5 5 5 5 4
## 1429 1484 5 5 5 5 3
## 1430 1485 4 3 2 4 3
## 1431 1486 4 3 4 5 2
## 1432 1487 5 3 4 5 1
## 1433 1488 5 5 4 5 2
## 1434 1489 5 2 5 5 3
## 1435 1490 5 5 4 5 3
## 1436 1491 2 3 4 5 2
## 1437 1492 3 3 4 4 3
## 1438 1493 5 5 4 5 3
## 1439 1494 4 4 5 5 2
## 1440 1495 4 5 4 5 2
## 1441 1496 4 4 4 4 4
## 1442 1497 4 5 5 3 3
## 1443 1498 4 5 4 4 3
## 1444 1499 5 4 5 4 3
## 1445 1500 5 5 5 4 2
## 1446 1501 5 4 4 4 2
## 1447 1503 2 3 5 5 1
## 1448 1504 4 4 4 4 3
## 1449 1505 4 4 4 5 3
## 1450 1506 4 5 4 5 2
## 1451 1507 5 4 5 5 4
## 1452 1508 4 4 4 4 4
## 1453 1509 4 4 4 5 2
## 1454 1510 5 5 5 4 2
## 1455 1511 5 5 5 4 1
## 1456 1512 3 5 5 5 2
## 1457 1513 5 4 5 4 4
## 1458 1514 4 3 5 5 3
## 1459 1515 5 5 5 5 4
## 1460 1516 5 5 5 4 2
## 1461 1517 3 3 5 4 3
## 1462 1518 3 4 5 5 2
## 1463 1519 5 5 5 4 4
## 1464 1520 3 5 5 5 3
## 1465 1521 5 5 5 5 3
## 1466 1522 5 5 5 5 3
## 1467 1523 5 3 5 5 3
## 1468 1524 4 3 3 4 4
## 1469 1525 4 4 4 3 3
## 1470 1526 5 5 5 5 3
## 1471 1527 5 4 4 4 3
## 1472 1528 5 5 5 4 3
## 1473 1529 5 4 5 4 4
## 1474 1530 5 5 4 5 2
## 1475 1531 5 5 4 3 2
## 1476 1532 5 5 5 2 1
## 1477 1533 5 5 4 4 2
## 1478 1534 5 5 5 4 3
## 1479 1535 5 5 5 5 4
## 1480 1536 4 4 4 4 4
## 1481 1537 5 5 4 5 2
## 1482 1538 5 5 5 5 3
## 1483 1539 5 4 5 4 2
## 1484 1540 1 4 5 4 4
## 1485 1541 5 4 4 3 5
## 1486 1542 4 4 3 5 3
## 1487 1543 5 4 5 5 2
## 1488 1544 5 5 5 5 4
## 1489 1546 5 5 5 5 3
## 1490 1547 5 4 5 4 2
## 1491 1548 5 5 5 5 5
## 1492 1549 3 3 3 4 3
## 1493 1550 5 4 5 5 2
## 1494 1551 3 3 4 3 2
## 1495 1552 5 5 5 5 2
## 1496 1554 5 5 5 5 5
## 1497 1555 4 3 4 4 3
## 1498 1556 5 4 5 5 4
## 1499 1559 5 5 5 5 3
## 1500 1560 4 5 4 4 3
## 1501 1561 3 5 5 4 1
## 1502 1562 4 5 4 4 2
## 1503 1563 4 4 4 5 2
## 1504 1564 5 5 5 5 4
## 1505 1565 5 5 5 5 4
## 1506 1566 5 5 5 5 4
## 1507 1567 5 5 5 4 4
## 1508 1568 5 5 5 4 3
## 1509 1569 4 4 2 4 2
## 1510 1570 5 4 5 4 3
## 1511 1571 5 5 5 5 5
## 1512 1572 5 5 5 4 3
## 1513 1573 5 4 5 4 2
## 1514 1574 5 5 5 5 4
## 1515 1575 5 4 4 4 2
## 1516 1576 5 5 5 4 3
## 1517 1577 3 3 4 5 2
## 1518 1578 4 3 4 3 2
## 1519 1579 5 4 5 3 3
## 1520 1580 4 4 3 4 3
## 1521 1581 5 5 5 4 1
## 1522 1582 5 5 5 4 3
## 1523 1583 5 5 5 5 5
## 1524 1584 5 5 5 2 4
## 1525 1585 5 5 5 5 1
## 1526 1586 5 5 5 5 2
## 1527 1587 5 2 5 5 5
## 1528 1588 5 5 5 5 3
## 1529 1589 5 4 3 4 2
## 1530 1590 5 5 5 4 3
## 1531 1591 5 5 5 5 2
## 1532 1592 5 4 5 4 1
## 1533 1593 5 3 5 5 3
## 1534 1594 4 5 5 4 4
## 1535 1595 5 3 5 5 3
## 1536 1596 5 4 5 5 4
## 1537 1597 5 5 5 5 4
## 1538 1598 5 5 5 5 2
## 1539 1599 5 5 5 5 2
## 1540 1600 5 4 3 5 2
## 1541 1601 5 5 5 5 4
## 1542 1602 5 5 5 5 3
## 1543 1603 5 4 5 4 4
## 1544 1604 5 4 4 4 2
## 1545 1605 5 5 5 4 2
## 1546 1606 4 4 4 3 1
## 1547 1609 4 4 2 5 5
## 1548 1610 5 4 5 4 3
## 1549 1611 3 3 3 3 3
## 1550 1612 4 4 4 4 3
## 1551 1613 5 5 5 4 1
## 1552 1614 5 4 4 4 3
## 1553 1615 5 4 4 4 2
## 1554 1616 4 3 5 4 2
## 1555 1617 4 4 4 4 3
## 1556 1619 5 5 4 5 2
## 1557 1620 4 5 4 5 5
## 1558 1621 2 5 5 4 1
## 1559 1622 4 4 3 4 3
## 1560 1623 5 5 4 3 4
## 1561 1624 5 5 5 1 4
## 1562 1625 5 4 4 3 3
## 1563 1626 5 5 5 4 2
## 1564 1627 2 3 4 5 2
## 1565 1628 5 5 5 4 3
## 1566 1629 4 4 4 4 2
## 1567 1630 2 5 3 5 2
## 1568 1631 4 4 4 4 3
## 1569 1632 5 5 5 4 2
## 1570 1633 4 5 4 4 3
## 1571 1635 3 3 5 3 2
## 1572 1636 5 4 5 3 2
## 1573 1637 4 3 4 4 3
## 1574 1638 3 4 3 4 3
## 1575 1639 4 4 4 3 4
## 1576 1640 4 4 4 4 2
## 1577 1641 5 5 5 5 5
## 1578 1642 5 5 5 5 2
## 1579 1643 5 5 3 3 3
## 1580 1644 2 5 1 5 2
## 1581 1645 5 4 4 5 3
## 1582 1646 4 5 4 5 3
## 1583 1648 4 4 4 4 3
## 1584 1649 5 5 4 4 2
## 1585 1650 5 5 5 4 2
## 1586 1651 1 1 1 1 1
## 1587 1652 5 4 3 4 3
## 1588 1653 5 4 3 5 1
## 1589 1654 3 4 3 5 4
## 1590 1655 5 5 5 5 3
## 1591 1656 4 4 2 5 2
## 1592 1657 5 5 5 5 5
## 1593 1658 5 5 5 5 4
## 1594 1659 5 5 4 4 3
## 1595 1660 5 5 5 5 2
## 1596 1661 5 5 5 5 3
## 1597 1662 5 5 5 5 2
## 1598 1663 5 5 5 5 3
## 1599 1664 5 5 5 5 3
## 1600 1665 5 4 5 4 3
## 1601 1666 5 5 5 4 4
## 1602 1667 5 5 4 4 3
## 1603 1668 5 5 5 5 2
## 1604 1669 4 4 5 4 3
## 1605 1670 5 5 5 3 3
## 1606 1671 5 5 5 5 1
## 1607 1672 5 5 5 3 4
## 1608 1673 5 5 5 5 3
## 1609 1674 5 3 5 3 2
## 1610 1675 5 5 5 5 3
## 1611 1676 4 3 2 4 3
## 1612 1677 5 5 5 5 3
## 1613 1678 5 5 4 4 4
## 1614 1679 5 5 4 4 3
## 1615 1680 4 4 5 4 2
## 1616 1681 5 5 5 5 2
## 1617 1682 5 5 5 5 3
## 1618 1683 5 5 5 5 2
## 1619 1685 5 5 5 4 3
## 1620 1686 5 5 5 5 3
## 1621 1687 3 3 4 3 3
## 1622 1688 5 5 5 4 3
## 1623 1690 5 5 5 5 5
## 1624 1691 5 5 3 4 5
## 1625 1692 2 2 2 4 2
## 1626 1693 5 5 5 5 3
## 1627 1694 5 5 5 4 3
## 1628 1695 5 5 5 4 2
## 1629 1696 2 3 4 3 4
## 1630 1697 4 5 5 4 3
## 1631 1698 5 5 5 5 3
## 1632 1699 5 4 5 4 5
## 1633 1700 5 4 4 2 2
## 1634 1701 5 5 5 4 3
## 1635 1702 5 5 5 5 1
## 1636 1703 5 5 5 4 3
## 1637 1704 4 4 5 5 3
## 1638 1705 5 5 5 4 4
## 1639 1706 4 4 3 5 4
## 1640 1707 5 5 5 5 4
## 1641 1708 5 5 5 5 5
## 1642 1709 4 5 5 5 2
## 1643 1710 5 5 5 5 3
## 1644 1711 4 4 5 5 4
## 1645 1712 4 4 5 4 3
## 1646 1713 4 5 4 5 4
## 1647 1714 5 5 5 5 5
## 1648 1715 2 5 3 4 3
## 1649 1716 5 5 4 4 3
## 1650 1717 4 4 3 4 4
## 1651 1718 5 4 5 4 3
## 1652 1719 5 5 5 5 3
## 1653 1720 5 5 5 5 2
## 1654 1721 5 5 5 3 2
## 1655 1722 5 5 5 5 5
## 1656 1723 5 5 5 4 3
## 1657 1724 3 4 4 4 2
## 1658 1726 4 5 4 5 3
## 1659 1727 5 5 4 5 4
## 1660 1728 4 5 4 4 3
## 1661 1729 4 5 5 4 2
## 1662 1730 4 4 5 3 2
## 1663 1731 5 5 5 5 1
## 1664 1732 5 5 5 4 3
## 1665 1733 5 5 5 5 3
## 1666 1734 5 5 5 5 2
## 1667 1735 5 5 5 5 3
## 1668 1736 5 5 5 4 4
## 1669 1737 3 2 3 2 1
## 1670 1738 5 5 5 4 3
## 1671 1740 5 4 5 4 3
## 1672 1741 5 5 5 3 4
## 1673 1742 4 4 4 4 3
## 1674 1743 5 3 5 4 2
## 1675 1744 5 5 5 4 3
## 1676 1745 4 4 4 4 4
## 1677 1746 5 5 4 3 1
## 1678 1747 5 5 5 5 2
## 1679 1748 5 3 2 3 2
## 1680 1749 5 5 5 5 4
## 1681 1750 4 4 4 4 3
## 1682 1751 4 5 5 5 1
## 1683 1752 5 5 5 5 4
## 1684 1753 5 5 4 5 5
## 1685 1754 5 4 5 4 3
## 1686 1755 5 5 5 5 3
## 1687 1756 2 5 2 3 5
## 1688 1757 5 5 5 5 2
## 1689 1758 5 5 5 5 5
## 1690 1759 4 4 4 4 4
## 1691 1760 5 5 5 4 2
## 1692 1761 4 4 4 4 3
## 1693 1762 5 4 5 5 3
## 1694 1763 5 5 5 5 3
## 1695 1764 5 5 5 5 4
## 1696 1765 4 5 5 4 3
## 1697 1766 5 5 5 5 3
## 1698 1767 5 4 5 4 5
## 1699 1768 5 5 5 5 5
## 1700 1769 4 5 5 5 3
## 1701 1770 4 5 4 4 3
## 1702 1771 3 3 3 4 2
## 1703 1772 5 5 5 4 2
## 1704 1773 4 4 4 4 4
## 1705 1774 5 5 4 5 3
## 1706 1775 4 4 3 2 3
## 1707 1776 4 4 4 4 4
## 1708 1777 5 5 5 5 4
## 1709 1778 4 4 4 5 2
## 1710 1779 5 5 5 5 5
## 1711 1780 4 3 4 4 2
## 1712 1781 5 4 5 4 2
## 1713 1782 4 4 4 4 4
## 1714 1783 4 4 4 4 2
## 1715 1784 5 5 5 5 3
## 1716 1785 4 3 2 3 4
## 1717 1786 4 5 2 5 1
## 1718 1787 5 4 4 5 3
## 1719 1788 4 4 4 4 3
## 1720 1789 4 4 4 4 4
## 1721 1790 5 5 4 4 3
## 1722 1791 4 3 3 5 3
## 1723 1792 5 5 5 4 2
## 1724 1793 5 4 3 3 2
## 1725 1794 4 3 4 4 4
## 1726 1795 4 5 5 5 4
## 1727 1796 1 1 1 4 5
## 1728 1797 5 5 4 4 2
## 1729 1799 4 5 5 5 3
## 1730 1800 5 5 5 3 2
## 1731 1801 5 5 5 5 2
## 1732 1802 4 5 4 5 3
## 1733 1803 5 5 5 4 3
## 1734 1804 5 5 4 4 2
## 1735 1805 5 3 4 4 3
## 1736 1806 4 4 3 4 4
## 1737 1807 5 3 3 4 2
## 1738 1808 5 5 5 5 3
## 1739 1809 5 5 5 5 2
## 1740 1810 5 5 5 3 4
## 1741 1811 4 4 4 4 4
## 1742 1812 5 5 5 4 2
## 1743 1813 5 5 5 4 3
## 1744 1814 5 5 5 5 5
## 1745 1815 5 5 5 5 5
## 1746 1816 5 5 5 4 2
## 1747 1817 5 5 5 4 2
## 1748 1818 5 5 5 4 2
## 1749 1819 5 5 5 4 1
## 1750 1820 4 5 4 5 2
## 1751 1821 3 3 4 5 5
## 1752 1822 4 4 4 3 3
## 1753 1823 5 5 5 4 4
## 1754 1824 2 3 3 4 2
## 1755 1825 4 4 4 4 2
## 1756 1826 4 4 4 4 4
## 1757 1827 5 5 5 4 3
## 1758 1828 5 3 5 5 5
## 1759 1829 5 5 5 4 4
## 1760 1830 5 5 5 5 2
## 1761 1831 5 4 5 5 3
## 1762 1832 5 5 5 3 3
## 1763 1833 5 4 5 5 3
## 1764 1834 5 4 5 4 2
## 1765 1835 5 5 5 3 4
## 1766 1836 3 3 2 4 5
## 1767 1837 5 4 4 4 3
## 1768 1838 5 4 5 5 2
## 1769 1839 4 4 4 4 3
## 1770 1840 4 5 5 5 2
## 1771 1841 5 3 5 5 3
## 1772 1842 5 5 4 4 3
## 1773 1843 5 5 5 5 3
## 1774 1844 5 5 5 4 2
## 1775 1845 5 5 5 5 2
## 1776 1846 4 3 3 3 5
## 1777 1847 5 5 5 5 2
## 1778 1848 3 4 3 5 4
## 1779 1849 4 4 3 3 4
## 1780 1850 4 4 5 4 1
## 1781 1851 5 5 5 4 4
## 1782 1852 5 5 5 5 5
## 1783 1853 4 5 5 5 3
## 1784 1854 5 5 5 4 4
## 1785 1855 5 3 4 4 2
## 1786 1856 5 5 5 5 5
## 1787 1857 5 5 5 4 3
## 1788 1858 5 5 5 3 2
## 1789 1860 5 5 5 5 5
## 1790 1862 5 5 5 5 4
## 1791 1863 4 3 3 3 2
## 1792 1864 5 5 5 5 2
## 1793 1865 5 5 5 5 5
## 1794 1866 5 4 5 3 2
## 1795 1867 5 5 5 5 3
## 1796 1868 4 4 5 4 4
## 1797 1869 4 4 4 4 4
## 1798 1870 3 4 3 4 1
## 1799 1871 5 5 5 5 4
## 1800 1873 5 5 4 4 4
## 1801 1874 5 5 5 5 4
## 1802 1875 5 4 5 5 2
## 1803 1877 5 5 5 4 1
## 1804 1878 5 5 4 4 2
## 1805 1879 4 3 5 5 2
## 1806 1880 3 5 2 1 2
## 1807 1881 5 3 5 5 2
## 1808 1882 5 5 5 5 4
## 1809 1883 5 5 5 5 2
## 1810 1884 4 4 3 3 4
## 1811 1885 5 5 5 4 3
## 1812 1886 5 5 5 5 2
## 1813 1887 5 5 5 5 4
## 1814 1888 5 5 5 5 2
## 1815 1889 4 3 4 4 4
## 1816 1890 5 5 5 5 1
## 1817 1891 5 4 5 4 2
## 1818 1892 4 4 4 4 4
## 1819 1893 5 5 4 5 3
## 1820 1895 5 4 4 3 3
## 1821 1896 5 5 4 5 5
## 1822 1898 5 4 5 5 2
## 1823 1899 5 5 5 4 5
## 1824 1900 5 5 5 4 4
## 1825 1901 5 4 5 5 4
## 1826 1902 5 5 5 4 4
## 1827 1903 5 4 4 5 3
## 1828 1904 5 4 5 3 4
## 1829 1905 5 5 5 5 1
## 1830 1906 4 4 5 5 3
## 1831 1907 3 4 4 2 4
## 1832 1908 5 5 5 5 3
## 1833 1909 5 5 5 5 5
## 1834 1910 5 4 5 5 4
## 1835 1911 5 4 5 4 3
## 1836 1912 4 4 5 4 3
## 1837 1913 5 3 5 4 2
## 1838 1914 5 5 5 5 5
## 1839 1915 5 5 5 5 2
## 1840 1916 3 5 4 4 2
## 1841 1917 5 3 4 4 2
## 1842 1918 5 5 5 5 1
## 1843 1919 5 5 5 5 5
## 1844 1920 5 5 5 4 3
## 1845 1921 5 5 5 5 1
## 1846 1923 5 5 5 5 3
## 1847 1924 3 5 4 4 3
## 1848 1925 5 5 5 4 2
## 1849 1926 5 3 4 3 2
## 1850 1927 5 3 4 4 3
## 1851 1928 5 5 5 4 3
## 1852 1929 5 4 4 3 3
## 1853 1930 4 5 3 3 3
## 1854 1931 4 4 4 5 5
## 1855 1932 4 4 5 5 3
## 1856 1933 5 5 3 5 4
## 1857 1934 3 4 4 3 3
## 1858 1935 4 4 3 3 3
## 1859 1936 5 5 5 5 2
## 1860 1937 3 1 5 2 3
## 1861 1939 5 5 5 5 5
## 1862 1940 5 5 5 4 2
## 1863 1941 5 5 5 4 1
## 1864 1942 5 4 5 3 2
## 1865 1943 5 5 5 4 3
## 1866 1944 5 5 5 5 1
## 1867 1945 5 5 5 5 3
## 1868 1946 5 5 5 3 2
## 1869 1947 3 2 3 3 4
## 1870 1948 5 5 5 4 1
## 1871 1949 5 5 5 4 5
## 1872 1950 5 4 4 4 3
## 1873 1951 5 5 5 5 2
## 1874 1952 5 5 5 5 3
## 1875 1953 5 5 4 5 3
## 1876 1954 4 4 5 4 4
## 1877 1955 3 3 2 5 5
## 1878 1956 5 5 5 5 5
## 1879 1957 4 4 4 4 4
## 1880 1958 5 5 5 5 3
## 1881 1961 4 3 4 4 2
## 1882 1962 5 4 3 4 5
## 1883 1964 5 5 5 4 3
## 1884 1965 4 5 5 5 3
## 1885 1966 3 4 4 3 2
## 1886 1967 5 5 3 5 4
## 1887 1968 5 5 5 5 2
## 1888 1969 5 4 5 4 2
## 1889 1970 5 5 5 4 3
## 1890 1971 5 5 5 2 2
## 1891 1972 4 5 5 5 5
## 1892 1973 5 5 5 3 5
## 1893 1974 4 4 4 4 3
## 1894 1975 4 4 5 4 3
## 1895 1976 5 5 5 5 4
## 1896 1977 5 5 5 5 3
## 1897 1978 4 4 4 5 3
## 1898 1979 5 5 5 4 2
## 1899 1980 4 4 4 2 2
## 1900 1981 5 5 5 5 3
## 1901 1982 4 5 5 5 3
## 1902 1983 5 5 5 5 4
## 1903 1984 5 5 5 5 2
## 1904 1985 5 5 5 4 5
## 1905 1986 4 4 4 4 3
## 1906 1987 5 5 5 5 3
## 1907 1988 5 5 3 4 4
## 1908 1989 5 5 5 3 4
## 1909 1990 5 4 4 3 3
## 1910 1991 5 5 5 5 5
## 1911 1992 5 5 5 5 4
## 1912 1993 5 4 5 4 2
## 1913 1994 5 4 5 5 2
## 1914 1995 5 5 5 4 2
## 1915 1996 5 5 5 4 3
## 1916 1997 5 5 5 5 3
## 1917 1998 3 3 3 3 2
## 1918 1999 5 5 5 5 3
## 1919 2000 5 5 1 2 5
## 1920 2001 4 4 3 4 2
## 1921 2002 3 4 4 5 3
## 1922 2003 3 4 4 4 5
## 1923 2004 5 5 4 4 3
## 1924 2005 5 4 2 4 4
## 1925 2006 5 5 4 4 4
## 1926 2007 5 5 5 5 3
## 1927 2008 4 4 5 5 2
## 1928 2009 4 4 5 4 2
## 1929 2010 5 4 5 4 2
## 1930 2011 5 5 5 5 4
## 1931 2012 5 5 5 4 2
## 1932 2013 5 5 5 5 4
## 1933 2014 5 4 5 4 2
## 1934 2015 5 5 5 3 1
## 1935 2016 4 5 5 4 4
## 1936 2017 3 4 5 5 4
## 1937 2018 5 5 5 3 2
## 1938 2019 4 4 5 5 5
## happy_health happy_likejob happy_employed happy_learn.expc
## 1 5 5 2 5
## 2 4 4 3 4
## 3 5 4 4 4
## 4 4 4 4 4
## 5 5 4 4 5
## 6 3 3 4 5
## 7 5 4 4 4
## 8 3 4 4 4
## 9 5 5 5 2
## 10 5 5 4 3
## 11 5 4 4 4
## 12 5 4 5 4
## 13 5 4 5 2
## 14 4 5 4 5
## 15 5 5 5 4
## 16 4 5 5 4
## 17 5 4 4 4
## 18 4 3 4 4
## 19 5 5 5 4
## 20 5 4 3 3
## 21 5 4 3 4
## 22 4 4 4 5
## 23 5 4 4 2
## 24 4 4 2 5
## 25 5 5 5 5
## 26 3 3 4 3
## 27 5 5 5 5
## 28 4 3 5 3
## 29 5 4 5 4
## 30 5 4 3 4
## 31 5 4 2 4
## 32 5 4 4 4
## 33 5 4 3 4
## 34 4 4 4 4
## 35 3 4 4 3
## 36 5 4 4 3
## 37 5 4 4 2
## 38 5 5 5 5
## 39 5 4 4 5
## 40 5 4 4 4
## 41 5 4 4 4
## 42 4 4 4 3
## 43 5 3 4 3
## 44 5 5 4 4
## 45 5 5 5 4
## 46 5 4 5 3
## 47 5 4 4 3
## 48 5 4 5 3
## 49 5 4 4 4
## 50 5 4 5 5
## 51 5 5 5 5
## 52 5 4 4 4
## 53 4 4 4 4
## 54 5 3 3 4
## 55 5 4 5 3
## 56 5 5 4 3
## 57 4 4 3 5
## 58 5 4 3 4
## 59 5 4 4 4
## 60 3 5 4 4
## 61 5 4 3 2
## 62 5 4 4 4
## 63 4 5 4 5
## 64 4 4 4 4
## 65 5 4 4 3
## 66 5 4 4 4
## 67 5 4 4 4
## 68 4 5 4 4
## 69 5 4 3 3
## 70 5 4 5 4
## 71 5 4 4 4
## 72 4 4 4 3
## 73 5 4 5 4
## 74 3 3 3 2
## 75 5 5 5 5
## 76 5 4 4 4
## 77 4 5 3 5
## 78 5 3 2 4
## 79 5 4 4 5
## 80 5 4 3 3
## 81 4 3 2 5
## 82 5 4 5 3
## 83 5 4 3 4
## 84 5 4 3 4
## 85 5 3 3 4
## 86 4 4 4 4
## 87 5 3 4 2
## 88 5 5 5 3
## 89 4 4 3 5
## 90 5 5 5 5
## 91 5 3 5 5
## 92 5 4 3 4
## 93 5 5 5 5
## 94 5 5 4 5
## 95 5 3 3 3
## 96 5 4 4 5
## 97 4 4 4 5
## 98 5 5 4 5
## 99 4 3 3 2
## 100 5 5 4 5
## 101 5 5 5 4
## 102 5 5 5 4
## 103 5 5 3 3
## 104 5 4 4 3
## 105 5 4 4 3
## 106 5 4 3 4
## 107 3 4 4 2
## 108 5 5 5 4
## 109 5 3 3 3
## 110 3 4 4 4
## 111 5 3 3 4
## 112 5 4 5 4
## 113 5 5 5 4
## 114 5 4 4 5
## 115 5 5 4 5
## 116 5 3 3 4
## 117 5 5 5 3
## 118 5 3 3 4
## 119 5 3 4 4
## 120 4 3 4 3
## 121 5 5 5 5
## 122 3 4 4 5
## 123 5 4 4 4
## 124 5 4 5 3
## 125 4 4 5 3
## 126 5 4 3 4
## 127 5 2 4 3
## 128 4 4 3 3
## 129 4 4 4 4
## 130 3 3 3 2
## 131 5 4 4 2
## 132 5 5 4 4
## 133 5 5 4 4
## 134 5 5 3 2
## 135 4 4 4 3
## 136 5 4 4 4
## 137 4 3 3 3
## 138 5 4 3 4
## 139 5 4 3 4
## 140 5 4 3 3
## 141 4 4 3 3
## 142 4 4 4 4
## 143 5 4 5 2
## 144 5 4 4 3
## 145 5 4 4 4
## 146 4 4 3 3
## 147 5 5 4 5
## 148 5 4 5 3
## 149 5 5 5 3
## 150 5 4 5 2
## 151 5 5 4 4
## 152 5 2 2 4
## 153 3 3 3 3
## 154 5 5 5 3
## 155 5 5 5 5
## 156 3 3 3 3
## 157 4 4 4 5
## 158 5 3 4 4
## 159 5 4 4 4
## 160 5 4 4 5
## 161 4 1 1 1
## 162 5 4 4 3
## 163 5 5 5 4
## 164 4 4 4 3
## 165 5 5 5 4
## 166 5 5 5 4
## 167 5 5 4 5
## 168 4 4 3 5
## 169 5 5 5 4
## 170 5 3 3 5
## 171 5 5 3 5
## 172 4 4 2 4
## 173 5 4 5 4
## 174 4 4 4 4
## 175 4 4 5 4
## 176 4 4 5 2
## 177 5 5 5 4
## 178 5 3 3 3
## 179 5 4 4 4
## 180 5 4 4 5
## 181 3 3 3 3
## 182 5 5 5 5
## 183 5 4 4 4
## 184 5 4 5 3
## 185 5 5 5 5
## 186 5 4 4 4
## 187 5 3 1 2
## 188 5 5 4 5
## 189 4 4 4 5
## 190 5 5 5 5
## 191 5 4 4 4
## 192 5 3 3 4
## 193 4 4 4 5
## 194 4 4 5 3
## 195 5 5 5 4
## 196 5 5 4 4
## 197 5 4 4 4
## 198 3 3 3 5
## 199 5 4 5 4
## 200 5 5 5 5
## 201 5 5 5 3
## 202 3 3 3 4
## 203 3 4 3 2
## 204 5 4 5 5
## 205 5 3 3 3
## 206 5 4 5 4
## 207 5 4 4 5
## 208 5 4 4 4
## 209 5 4 4 4
## 210 5 5 5 4
## 211 5 4 5 5
## 212 5 5 5 3
## 213 5 5 5 4
## 214 5 5 5 4
## 215 5 4 4 4
## 216 5 5 5 4
## 217 5 3 4 4
## 218 5 5 5 5
## 219 4 4 4 5
## 220 5 4 5 4
## 221 5 4 4 5
## 222 5 3 4 3
## 223 5 4 4 2
## 224 5 5 5 3
## 225 4 4 4 4
## 226 5 4 3 4
## 227 4 4 4 4
## 228 5 5 5 5
## 229 5 5 5 5
## 230 5 4 4 4
## 231 5 4 4 4
## 232 4 4 5 3
## 233 5 1 1 5
## 234 4 4 5 4
## 235 5 5 5 5
## 236 5 4 4 3
## 237 5 5 5 5
## 238 4 4 4 4
## 239 5 4 3 2
## 240 5 3 3 4
## 241 3 3 5 3
## 242 4 3 3 2
## 243 5 4 4 3
## 244 5 4 4 3
## 245 4 4 3 3
## 246 5 5 4 4
## 247 5 5 5 3
## 248 5 4 5 3
## 249 5 3 5 2
## 250 5 4 4 3
## 251 5 3 4 4
## 252 5 4 4 4
## 253 5 4 4 2
## 254 5 3 4 3
## 255 5 4 5 4
## 256 5 4 5 2
## 257 4 4 3 5
## 258 5 5 5 4
## 259 5 5 3 5
## 260 5 4 5 3
## 261 5 4 4 4
## 262 5 4 4 4
## 263 5 4 4 4
## 264 5 4 4 4
## 265 5 5 4 4
## 266 5 3 5 3
## 267 5 5 5 5
## 268 5 3 4 2
## 269 4 3 4 4
## 270 5 4 3 4
## 271 4 3 3 3
## 272 5 5 5 5
## 273 5 5 5 5
## 274 5 5 5 5
## 275 5 5 5 5
## 276 5 5 4 4
## 277 5 3 3 3
## 278 5 4 4 3
## 279 5 4 4 4
## 280 4 4 4 3
## 281 4 3 4 3
## 282 5 5 5 4
## 283 4 2 4 3
## 284 5 3 5 4
## 285 5 1 1 3
## 286 5 5 4 4
## 287 4 4 4 4
## 288 4 3 4 3
## 289 5 4 5 4
## 290 4 3 4 3
## 291 5 3 4 5
## 292 4 4 4 3
## 293 5 3 4 4
## 294 3 2 4 2
## 295 4 4 4 4
## 296 4 3 4 4
## 297 5 4 4 4
## 298 5 4 4 3
## 299 5 3 4 4
## 300 5 4 4 4
## 301 4 4 4 4
## 302 5 4 4 4
## 303 5 4 5 5
## 304 5 4 3 4
## 305 5 3 5 1
## 306 5 4 3 3
## 307 5 4 4 4
## 308 5 5 5 4
## 309 5 2 4 2
## 310 4 4 4 4
## 311 5 4 5 5
## 312 5 4 4 4
## 313 4 3 5 5
## 314 4 4 2 4
## 315 5 5 5 5
## 316 5 5 5 4
## 317 4 4 4 4
## 318 4 3 2 4
## 319 5 5 5 5
## 320 5 3 3 4
## 321 5 4 4 3
## 322 4 4 4 4
## 323 3 5 4 3
## 324 5 4 3 3
## 325 5 4 4 4
## 326 4 3 4 3
## 327 5 5 5 5
## 328 4 5 4 5
## 329 4 3 3 3
## 330 5 3 4 3
## 331 5 4 4 5
## 332 4 5 4 5
## 333 4 4 5 4
## 334 5 5 5 4
## 335 1 2 2 2
## 336 4 4 4 4
## 337 5 4 4 4
## 338 5 3 3 4
## 339 5 2 5 4
## 340 5 4 4 5
## 341 5 5 5 5
## 342 4 3 5 3
## 343 5 4 3 4
## 344 5 3 4 2
## 345 4 3 3 3
## 346 5 5 5 5
## 347 5 4 4 4
## 348 4 4 3 4
## 349 5 3 5 5
## 350 5 4 4 4
## 351 5 4 4 5
## 352 5 5 5 5
## 353 5 4 5 5
## 354 5 4 5 5
## 355 5 4 3 3
## 356 4 3 4 4
## 357 5 4 4 3
## 358 5 5 4 5
## 359 5 5 5 5
## 360 5 3 4 4
## 361 5 4 4 4
## 362 4 4 5 4
## 363 5 5 5 5
## 364 5 4 5 5
## 365 5 3 4 3
## 366 5 4 4 3
## 367 5 4 4 3
## 368 4 3 3 2
## 369 5 4 4 4
## 370 4 4 4 4
## 371 4 4 2 5
## 372 5 3 5 3
## 373 5 2 4 4
## 374 5 4 4 5
## 375 5 5 5 5
## 376 5 4 4 3
## 377 4 4 4 5
## 378 5 5 4 5
## 379 5 5 4 4
## 380 5 5 5 5
## 381 4 4 4 3
## 382 3 3 2 2
## 383 5 4 4 4
## 384 4 5 5 5
## 385 5 4 5 5
## 386 3 5 3 3
## 387 5 4 4 4
## 388 5 4 3 5
## 389 5 5 3 4
## 390 5 5 5 5
## 391 3 3 4 3
## 392 3 4 4 4
## 393 5 3 4 3
## 394 4 4 3 4
## 395 5 4 4 4
## 396 5 4 5 5
## 397 5 5 5 4
## 398 5 4 4 4
## 399 5 3 4 3
## 400 5 4 4 3
## 401 5 3 3 3
## 402 5 4 4 4
## 403 5 5 5 3
## 404 5 5 5 5
## 405 5 4 4 4
## 406 3 3 4 4
## 407 4 4 4 4
## 408 5 4 4 5
## 409 5 4 5 4
## 410 5 4 5 4
## 411 4 3 3 4
## 412 3 1 3 5
## 413 4 5 2 5
## 414 5 4 4 4
## 415 5 5 5 5
## 416 5 4 4 4
## 417 5 5 5 1
## 418 5 4 4 4
## 419 5 3 4 4
## 420 5 3 4 4
## 421 4 4 4 4
## 422 4 4 3 3
## 423 5 5 5 4
## 424 5 5 5 4
## 425 4 4 4 4
## 426 4 3 2 4
## 427 5 4 4 5
## 428 5 4 4 5
## 429 4 4 4 4
## 430 5 4 4 4
## 431 5 5 4 3
## 432 4 3 4 5
## 433 4 5 4 4
## 434 5 4 4 4
## 435 3 3 3 2
## 436 5 5 4 4
## 437 4 4 4 4
## 438 5 5 5 5
## 439 3 4 3 3
## 440 4 4 4 4
## 441 5 4 5 4
## 442 4 3 4 4
## 443 5 5 5 5
## 444 5 4 5 4
## 445 5 3 4 4
## 446 5 5 5 5
## 447 4 5 5 4
## 448 4 4 4 3
## 449 5 4 5 4
## 450 5 5 3 5
## 451 5 4 4 4
## 452 5 4 4 3
## 453 5 4 4 4
## 454 5 5 5 3
## 455 5 5 5 3
## 456 5 5 3 5
## 457 5 5 4 5
## 458 4 4 3 4
## 459 4 3 4 3
## 460 5 5 3 3
## 461 5 5 5 4
## 462 5 3 3 4
## 463 5 4 4 4
## 464 5 5 5 5
## 465 5 4 4 3
## 466 3 4 2 4
## 467 5 3 4 3
## 468 5 4 3 4
## 469 5 4 5 5
## 470 5 4 3 3
## 471 4 4 5 4
## 472 5 2 4 2
## 473 5 5 5 3
## 474 5 5 5 5
## 475 4 4 3 2
## 476 5 5 5 4
## 477 5 3 5 2
## 478 5 4 4 4
## 479 5 5 5 5
## 480 5 4 3 4
## 481 5 5 5 4
## 482 5 5 5 5
## 483 4 4 5 4
## 484 5 5 5 5
## 485 5 4 5 3
## 486 5 4 3 5
## 487 5 4 4 3
## 488 5 5 4 4
## 489 4 3 3 3
## 490 5 4 4 3
## 491 5 3 3 3
## 492 4 4 4 4
## 493 5 4 4 3
## 494 5 5 5 3
## 495 5 5 4 5
## 496 5 5 5 5
## 497 4 4 5 3
## 498 5 5 4 5
## 499 5 5 3 4
## 500 5 4 4 4
## 501 5 5 3 4
## 502 5 4 4 3
## 503 5 4 4 4
## 504 5 4 5 5
## 505 5 4 4 4
## 506 5 4 4 3
## 507 5 3 4 4
## 508 5 5 4 4
## 509 5 5 5 5
## 510 5 4 4 5
## 511 5 4 4 4
## 512 4 4 5 4
## 513 3 4 4 3
## 514 5 5 5 3
## 515 4 4 5 2
## 516 5 5 5 4
## 517 3 3 3 2
## 518 5 3 5 2
## 519 4 4 4 4
## 520 5 5 4 4
## 521 5 4 4 4
## 522 4 4 4 4
## 523 5 3 3 2
## 524 5 5 5 4
## 525 5 4 4 4
## 526 5 5 4 5
## 527 5 5 5 4
## 528 4 5 4 3
## 529 5 4 4 4
## 530 5 4 4 4
## 531 5 2 2 3
## 532 5 3 3 3
## 533 5 3 2 3
## 534 5 4 4 4
## 535 5 4 4 5
## 536 5 5 5 3
## 537 5 5 4 5
## 538 5 5 4 5
## 539 5 5 5 5
## 540 4 3 4 3
## 541 5 4 4 3
## 542 5 4 5 4
## 543 5 4 4 5
## 544 5 3 4 5
## 545 4 5 5 4
## 546 5 4 5 4
## 547 5 3 3 4
## 548 5 1 1 3
## 549 4 5 5 5
## 550 5 5 5 4
## 551 5 4 4 3
## 552 5 4 5 4
## 553 5 4 5 4
## 554 4 4 3 4
## 555 5 4 4 4
## 556 5 4 5 4
## 557 5 5 5 5
## 558 4 4 4 5
## 559 5 3 3 3
## 560 5 4 5 4
## 561 3 3 3 3
## 562 5 5 5 5
## 563 4 4 3 4
## 564 5 5 5 5
## 565 4 3 3 3
## 566 5 4 3 4
## 567 5 5 5 5
## 568 5 4 4 4
## 569 4 2 2 2
## 570 4 5 3 5
## 571 5 5 5 5
## 572 5 4 4 3
## 573 5 3 3 3
## 574 5 5 5 5
## 575 5 4 4 4
## 576 4 4 3 5
## 577 4 3 3 4
## 578 5 5 3 4
## 579 5 5 5 5
## 580 4 3 2 2
## 581 5 3 3 2
## 582 5 4 4 3
## 583 5 3 3 3
## 584 4 4 4 3
## 585 5 4 4 4
## 586 5 4 5 4
## 587 5 3 5 4
## 588 5 4 4 5
## 589 5 5 5 3
## 590 5 5 4 4
## 591 5 3 3 3
## 592 5 5 5 5
## 593 5 4 4 4
## 594 3 5 4 3
## 595 5 4 4 5
## 596 5 5 4 5
## 597 5 4 3 5
## 598 4 1 1 3
## 599 5 5 5 5
## 600 5 3 5 4
## 601 5 5 5 5
## 602 5 2 5 2
## 603 4 4 4 4
## 604 5 4 3 4
## 605 3 4 4 4
## 606 5 5 4 5
## 607 5 5 5 5
## 608 5 3 4 4
## 609 5 4 4 3
## 610 5 5 5 5
## 611 5 4 4 4
## 612 3 2 2 2
## 613 4 5 5 5
## 614 5 4 4 4
## 615 5 5 5 4
## 616 5 5 2 4
## 617 5 4 4 4
## 618 5 4 4 4
## 619 5 5 5 4
## 620 4 5 4 5
## 621 5 4 2 5
## 622 5 4 5 5
## 623 5 3 3 2
## 624 5 4 4 4
## 625 5 5 5 4
## 626 5 4 4 4
## 627 5 3 4 3
## 628 5 1 4 4
## 629 3 5 4 4
## 630 5 5 4 5
## 631 4 4 4 4
## 632 5 1 1 4
## 633 4 4 4 4
## 634 4 5 5 3
## 635 4 3 3 3
## 636 3 3 3 3
## 637 5 5 5 4
## 638 5 3 4 3
## 639 5 4 4 5
## 640 4 4 4 5
## 641 5 5 4 4
## 642 4 5 4 5
## 643 4 3 2 3
## 644 5 4 4 5
## 645 5 5 5 5
## 646 4 2 2 2
## 647 5 5 5 4
## 648 5 4 4 4
## 649 5 3 4 3
## 650 5 4 4 5
## 651 3 2 4 2
## 652 5 4 4 4
## 653 5 3 3 5
## 654 4 3 3 4
## 655 4 2 5 1
## 656 5 3 4 2
## 657 3 5 4 5
## 658 5 4 4 4
## 659 5 4 5 4
## 660 5 4 4 4
## 661 5 4 4 5
## 662 4 3 4 4
## 663 3 3 3 4
## 664 4 4 4 4
## 665 5 3 4 4
## 666 5 3 3 4
## 667 4 4 3 5
## 668 4 5 3 5
## 669 5 5 2 5
## 670 5 4 4 5
## 671 5 5 5 5
## 672 4 5 5 4
## 673 5 4 5 4
## 674 5 3 4 4
## 675 5 3 3 5
## 676 5 5 4 5
## 677 4 4 4 4
## 678 4 5 3 5
## 679 4 3 3 3
## 680 3 2 2 2
## 681 3 3 4 3
## 682 5 5 5 5
## 683 5 4 5 2
## 684 5 5 5 5
## 685 5 3 5 4
## 686 4 4 5 3
## 687 4 4 4 5
## 688 5 4 4 3
## 689 5 3 4 3
## 690 5 4 4 4
## 691 4 5 5 2
## 692 5 3 5 2
## 693 5 5 5 5
## 694 4 2 3 3
## 695 5 4 4 4
## 696 5 4 3 4
## 697 5 4 4 4
## 698 5 2 3 4
## 699 5 4 4 4
## 700 4 5 4 5
## 701 5 4 4 4
## 702 5 3 4 3
## 703 5 5 5 4
## 704 5 5 5 5
## 705 5 4 4 3
## 706 5 5 3 4
## 707 5 5 4 4
## 708 5 4 5 3
## 709 5 4 4 4
## 710 5 4 4 4
## 711 5 2 2 4
## 712 5 4 4 4
## 713 4 5 4 4
## 714 3 3 3 3
## 715 4 3 3 3
## 716 5 4 4 4
## 717 5 4 5 4
## 718 5 5 5 3
## 719 5 5 4 5
## 720 3 4 3 4
## 721 4 4 4 4
## 722 4 3 3 2
## 723 5 4 3 3
## 724 5 5 5 5
## 725 5 5 5 5
## 726 4 4 3 5
## 727 4 4 4 3
## 728 4 3 3 5
## 729 5 4 4 3
## 730 4 5 5 5
## 731 5 4 3 5
## 732 4 4 5 4
## 733 4 4 4 4
## 734 4 4 4 4
## 735 5 4 5 3
## 736 4 4 3 2
## 737 5 5 4 4
## 738 5 5 5 5
## 739 5 4 4 5
## 740 5 3 3 4
## 741 4 3 4 3
## 742 5 5 5 5
## 743 4 4 4 4
## 744 5 5 5 3
## 745 5 4 5 4
## 746 3 4 3 4
## 747 4 4 2 4
## 748 5 5 4 5
## 749 5 4 5 5
## 750 4 3 4 2
## 751 5 5 4 2
## 752 5 4 5 4
## 753 3 5 3 5
## 754 5 2 2 1
## 755 5 3 3 3
## 756 4 4 4 4
## 757 4 4 4 2
## 758 5 4 5 4
## 759 5 3 4 4
## 760 4 4 4 4
## 761 4 4 4 4
## 762 5 4 4 4
## 763 5 4 4 3
## 764 4 5 4 3
## 765 5 4 4 4
## 766 5 5 5 4
## 767 4 4 4 3
## 768 5 4 5 3
## 769 5 4 3 5
## 770 3 3 3 3
## 771 5 2 3 3
## 772 5 4 3 4
## 773 4 4 4 3
## 774 5 5 5 5
## 775 4 3 3 5
## 776 5 4 4 3
## 777 5 4 5 4
## 778 4 4 4 3
## 779 5 4 3 5
## 780 5 3 3 4
## 781 3 4 4 3
## 782 5 4 4 3
## 783 5 5 5 5
## 784 5 3 4 4
## 785 5 4 4 3
## 786 5 5 5 5
## 787 5 4 5 4
## 788 5 4 3 5
## 789 5 5 2 1
## 790 4 4 3 5
## 791 5 5 4 3
## 792 4 3 3 4
## 793 5 4 4 4
## 794 5 5 4 4
## 795 5 4 4 4
## 796 5 4 4 5
## 797 4 5 5 5
## 798 5 5 5 5
## 799 5 5 5 5
## 800 5 4 3 4
## 801 5 5 4 4
## 802 5 5 5 5
## 803 5 3 3 2
## 804 5 3 3 3
## 805 4 4 4 3
## 806 5 3 3 3
## 807 4 4 4 4
## 808 4 3 4 5
## 809 4 4 4 4
## 810 4 3 4 4
## 811 5 5 5 4
## 812 3 4 3 3
## 813 5 4 5 4
## 814 5 4 4 3
## 815 4 4 4 3
## 816 4 5 5 5
## 817 5 5 5 5
## 818 4 3 4 3
## 819 5 3 5 5
## 820 4 4 4 4
## 821 5 5 5 5
## 822 5 3 5 4
## 823 4 4 4 4
## 824 5 3 5 3
## 825 4 4 3 4
## 826 3 4 2 4
## 827 5 3 4 3
## 828 4 3 3 3
## 829 5 4 4 4
## 830 5 3 3 3
## 831 5 2 1 3
## 832 4 4 3 5
## 833 5 4 3 4
## 834 5 4 3 4
## 835 5 4 5 5
## 836 5 4 3 3
## 837 5 4 5 2
## 838 5 4 4 3
## 839 4 4 4 5
## 840 5 4 5 3
## 841 5 4 5 5
## 842 4 4 4 2
## 843 5 4 5 4
## 844 5 5 5 5
## 845 5 4 2 5
## 846 4 3 3 2
## 847 5 5 5 4
## 848 5 4 4 4
## 849 5 4 4 4
## 850 5 3 3 3
## 851 5 3 5 5
## 852 5 4 5 5
## 853 5 5 5 4
## 854 5 4 3 3
## 855 4 3 3 2
## 856 5 4 4 4
## 857 5 5 5 5
## 858 5 4 4 5
## 859 5 5 5 5
## 860 4 4 4 3
## 861 5 3 4 3
## 862 5 5 5 5
## 863 3 5 4 5
## 864 5 4 4 4
## 865 5 3 5 4
## 866 5 4 3 2
## 867 5 4 4 5
## 868 5 4 4 4
## 869 4 4 4 3
## 870 4 5 4 4
## 871 5 3 5 3
## 872 5 3 4 3
## 873 5 4 4 4
## 874 5 4 5 1
## 875 5 4 4 3
## 876 5 4 5 4
## 877 5 3 3 5
## 878 4 5 3 5
## 879 4 5 3 3
## 880 5 4 4 4
## 881 4 3 4 4
## 882 4 4 4 4
## 883 4 4 4 4
## 884 5 5 5 5
## 885 5 5 5 3
## 886 5 4 4 5
## 887 5 3 5 3
## 888 5 4 4 3
## 889 5 5 5 4
## 890 5 4 4 3
## 891 4 2 3 3
## 892 5 4 5 4
## 893 5 1 2 1
## 894 5 3 3 4
## 895 5 5 5 4
## 896 5 5 5 5
## 897 5 1 1 2
## 898 5 5 5 4
## 899 5 5 5 5
## 900 5 5 5 5
## 901 5 4 4 4
## 902 5 5 4 3
## 903 4 4 5 2
## 904 5 4 4 3
## 905 5 4 4 4
## 906 5 4 5 3
## 907 4 4 4 4
## 908 4 4 2 4
## 909 5 4 4 3
## 910 4 4 4 3
## 911 5 3 4 3
## 912 5 4 4 4
## 913 5 4 4 4
## 914 5 4 4 3
## 915 5 5 4 5
## 916 5 5 5 5
## 917 4 4 3 3
## 918 5 5 4 3
## 919 4 5 4 2
## 920 5 4 4 3
## 921 5 5 3 5
## 922 5 4 4 3
## 923 5 5 5 3
## 924 5 2 4 4
## 925 5 5 2 4
## 926 5 1 5 2
## 927 4 5 4 5
## 928 5 5 4 4
## 929 5 5 5 3
## 930 3 3 2 3
## 931 5 4 3 2
## 932 5 3 4 2
## 933 5 4 5 5
## 934 4 3 5 3
## 935 5 4 3 4
## 936 5 5 5 2
## 937 5 5 5 5
## 938 5 4 3 2
## 939 5 4 4 4
## 940 5 4 4 3
## 941 5 5 5 3
## 942 3 3 4 4
## 943 5 2 2 2
## 944 5 5 5 4
## 945 4 4 4 4
## 946 5 3 4 3
## 947 5 5 5 5
## 948 5 5 5 4
## 949 3 4 5 5
## 950 3 3 4 2
## 951 5 4 4 3
## 952 4 3 3 3
## 953 5 5 3 3
## 954 5 5 5 5
## 955 5 4 4 3
## 956 5 5 5 3
## 957 4 5 5 4
## 958 5 5 5 5
## 959 5 4 5 2
## 960 5 4 4 4
## 961 4 3 4 3
## 962 5 4 4 4
## 963 4 4 5 4
## 964 5 5 4 4
## 965 5 3 5 3
## 966 5 5 5 5
## 967 5 3 3 3
## 968 5 4 5 4
## 969 4 4 4 3
## 970 5 1 3 3
## 971 4 5 3 5
## 972 5 5 4 5
## 973 5 3 3 3
## 974 3 4 5 3
## 975 5 5 4 4
## 976 5 5 5 3
## 977 5 5 5 5
## 978 5 4 4 4
## 979 4 4 5 4
## 980 5 3 5 3
## 981 5 4 4 4
## 982 5 4 4 4
## 983 5 4 4 5
## 984 5 4 4 3
## 985 4 4 4 3
## 986 4 4 4 3
## 987 5 3 3 3
## 988 5 4 4 3
## 989 4 5 5 4
## 990 5 5 4 5
## 991 3 4 5 3
## 992 4 4 5 3
## 993 5 5 4 5
## 994 4 4 3 5
## 995 4 4 4 4
## 996 5 3 3 4
## 997 5 3 4 4
## 998 5 3 5 2
## 999 5 3 4 4
## 1000 5 5 3 5
## 1001 4 4 4 5
## 1002 5 5 5 5
## 1003 5 4 3 5
## 1004 5 5 3 3
## 1005 5 5 2 5
## 1006 5 4 2 4
## 1007 5 4 4 4
## 1008 5 3 5 5
## 1009 5 5 5 5
## 1010 4 2 2 5
## 1011 5 5 4 4
## 1012 5 5 1 5
## 1013 3 2 3 4
## 1014 5 3 4 3
## 1015 5 3 4 4
## 1016 5 5 5 5
## 1017 5 4 3 4
## 1018 5 4 4 4
## 1019 5 4 4 5
## 1020 4 3 3 3
## 1021 5 2 3 5
## 1022 4 4 4 3
## 1023 5 5 5 3
## 1024 5 4 5 3
## 1025 5 4 4 3
## 1026 5 4 3 4
## 1027 4 4 4 5
## 1028 3 3 3 2
## 1029 5 5 5 5
## 1030 5 5 3 4
## 1031 4 4 4 5
## 1032 5 4 4 4
## 1033 4 5 3 4
## 1034 5 3 4 3
## 1035 5 3 4 3
## 1036 4 3 4 3
## 1037 4 5 5 2
## 1038 5 4 3 2
## 1039 5 5 5 4
## 1040 5 4 5 4
## 1041 5 5 5 5
## 1042 5 5 5 5
## 1043 4 4 4 4
## 1044 4 4 4 3
## 1045 4 3 5 2
## 1046 4 3 4 3
## 1047 5 5 4 5
## 1048 5 5 3 5
## 1049 5 5 4 4
## 1050 4 4 4 4
## 1051 5 4 5 4
## 1052 4 3 5 5
## 1053 5 4 4 3
## 1054 5 4 5 5
## 1055 5 5 3 4
## 1056 5 4 4 4
## 1057 5 4 5 3
## 1058 5 4 4 5
## 1059 4 3 4 3
## 1060 5 4 4 3
## 1061 5 5 5 5
## 1062 5 3 4 3
## 1063 4 3 5 4
## 1064 5 4 3 3
## 1065 5 4 5 5
## 1066 4 4 4 4
## 1067 3 5 5 4
## 1068 5 4 5 4
## 1069 5 5 5 5
## 1070 5 3 5 4
## 1071 4 1 1 1
## 1072 5 3 4 3
## 1073 5 4 4 4
## 1074 5 5 4 5
## 1075 5 5 4 5
## 1076 5 5 4 3
## 1077 5 5 4 5
## 1078 4 4 4 3
## 1079 5 4 4 2
## 1080 5 4 4 5
## 1081 5 4 3 4
## 1082 5 5 4 5
## 1083 5 3 4 5
## 1084 5 3 4 3
## 1085 5 3 3 2
## 1086 4 4 4 4
## 1087 5 4 4 4
## 1088 5 5 4 4
## 1089 5 5 5 4
## 1090 5 4 4 3
## 1091 4 3 4 3
## 1092 5 3 4 4
## 1093 4 4 4 5
## 1094 4 3 3 4
## 1095 4 3 4 2
## 1096 3 4 5 3
## 1097 3 2 2 3
## 1098 5 4 3 4
## 1099 5 5 3 4
## 1100 5 5 5 4
## 1101 4 3 3 4
## 1102 5 4 4 4
## 1103 4 3 5 3
## 1104 5 3 4 3
## 1105 5 4 4 2
## 1106 4 3 3 3
## 1107 5 5 5 4
## 1108 4 4 3 3
## 1109 5 4 4 5
## 1110 5 4 5 4
## 1111 5 4 4 4
## 1112 4 3 4 4
## 1113 5 4 4 5
## 1114 4 4 1 4
## 1115 4 3 3 5
## 1116 4 4 3 4
## 1117 4 4 4 4
## 1118 4 4 3 3
## 1119 5 4 5 5
## 1120 4 4 5 4
## 1121 4 3 3 3
## 1122 5 4 5 4
## 1123 5 3 3 5
## 1124 5 5 5 5
## 1125 4 3 4 4
## 1126 5 4 4 4
## 1127 5 4 4 5
## 1128 5 4 5 4
## 1129 5 4 3 3
## 1130 4 4 4 4
## 1131 5 4 3 4
## 1132 5 5 5 3
## 1133 5 4 5 2
## 1134 4 4 3 4
## 1135 5 3 3 5
## 1136 5 4 4 3
## 1137 5 5 4 5
## 1138 5 4 4 5
## 1139 5 4 5 5
## 1140 4 4 2 5
## 1141 4 3 3 3
## 1142 5 4 4 4
## 1143 5 5 5 4
## 1144 4 3 3 3
## 1145 5 4 5 3
## 1146 5 3 5 4
## 1147 4 3 3 4
## 1148 5 4 4 2
## 1149 5 4 2 4
## 1150 5 4 4 3
## 1151 5 5 5 3
## 1152 5 4 3 3
## 1153 3 3 2 4
## 1154 2 2 2 2
## 1155 4 3 3 4
## 1156 4 4 5 5
## 1157 3 5 3 5
## 1158 4 4 4 3
## 1159 5 5 5 5
## 1160 5 4 4 3
## 1161 4 2 4 2
## 1162 5 4 4 3
## 1163 5 4 4 4
## 1164 4 4 3 5
## 1165 5 5 4 3
## 1166 4 4 4 3
## 1167 4 3 4 4
## 1168 5 5 5 4
## 1169 4 2 3 2
## 1170 4 4 4 3
## 1171 5 4 4 3
## 1172 4 4 4 4
## 1173 5 5 5 5
## 1174 5 4 4 4
## 1175 5 1 1 5
## 1176 5 4 2 5
## 1177 3 4 4 5
## 1178 5 3 4 4
## 1179 5 3 5 3
## 1180 4 4 4 4
## 1181 5 3 3 3
## 1182 5 3 2 4
## 1183 5 4 4 4
## 1184 5 3 5 5
## 1185 5 4 4 5
## 1186 5 5 5 5
## 1187 5 4 5 4
## 1188 5 3 3 3
## 1189 5 5 4 3
## 1190 4 2 2 2
## 1191 5 4 3 4
## 1192 4 4 4 4
## 1193 5 4 5 3
## 1194 5 4 4 4
## 1195 5 3 5 3
## 1196 5 4 4 3
## 1197 4 5 4 2
## 1198 5 4 5 4
## 1199 5 4 5 4
## 1200 4 3 4 3
## 1201 3 3 4 4
## 1202 5 3 4 3
## 1203 4 3 4 2
## 1204 5 4 3 3
## 1205 5 5 5 4
## 1206 5 4 3 4
## 1207 5 5 4 5
## 1208 4 4 4 4
## 1209 5 2 4 3
## 1210 4 4 3 5
## 1211 5 5 5 3
## 1212 4 3 3 5
## 1213 3 4 4 1
## 1214 5 4 5 4
## 1215 5 5 5 3
## 1216 4 4 4 4
## 1217 5 5 3 5
## 1218 4 3 5 4
## 1219 4 3 4 4
## 1220 5 4 5 4
## 1221 4 5 5 5
## 1222 5 4 3 4
## 1223 5 1 1 5
## 1224 4 5 4 4
## 1225 3 5 5 5
## 1226 4 5 3 4
## 1227 5 1 5 4
## 1228 5 4 4 4
## 1229 4 3 4 4
## 1230 4 4 5 3
## 1231 4 4 4 3
## 1232 4 3 4 1
## 1233 5 4 5 4
## 1234 5 5 5 4
## 1235 5 5 2 4
## 1236 5 3 3 4
## 1237 3 4 4 5
## 1238 5 4 4 3
## 1239 5 4 4 4
## 1240 5 5 4 5
## 1241 3 5 4 5
## 1242 5 3 2 3
## 1243 5 4 4 5
## 1244 4 5 5 4
## 1245 4 2 2 3
## 1246 4 5 5 3
## 1247 5 5 5 5
## 1248 5 5 5 4
## 1249 4 5 4 3
## 1250 4 4 3 5
## 1251 5 5 5 4
## 1252 4 4 3 3
## 1253 5 5 5 3
## 1254 5 4 4 2
## 1255 5 3 3 5
## 1256 5 3 4 4
## 1257 5 3 3 4
## 1258 5 5 4 5
## 1259 5 3 4 4
## 1260 5 4 4 4
## 1261 5 4 4 3
## 1262 5 4 4 4
## 1263 5 4 4 3
## 1264 5 4 5 5
## 1265 5 5 2 5
## 1266 5 4 4 5
## 1267 5 3 3 3
## 1268 5 4 4 3
## 1269 3 3 3 5
## 1270 5 4 4 2
## 1271 5 5 5 4
## 1272 4 3 3 4
## 1273 5 3 3 4
## 1274 5 5 5 5
## 1275 5 4 4 5
## 1276 5 4 4 5
## 1277 4 3 3 4
## 1278 3 3 3 4
## 1279 5 4 3 5
## 1280 5 5 5 5
## 1281 5 4 5 5
## 1282 5 5 5 5
## 1283 5 5 5 5
## 1284 5 3 3 2
## 1285 5 5 5 5
## 1286 4 3 4 2
## 1287 5 5 5 4
## 1288 5 4 4 3
## 1289 5 4 3 4
## 1290 5 4 4 4
## 1291 4 4 4 4
## 1292 5 5 5 5
## 1293 5 3 3 2
## 1294 5 4 5 5
## 1295 5 4 3 3
## 1296 5 4 4 3
## 1297 5 4 3 4
## 1298 5 5 5 4
## 1299 5 5 5 4
## 1300 5 3 5 4
## 1301 4 4 5 4
## 1302 5 4 4 4
## 1303 4 4 3 4
## 1304 5 5 5 5
## 1305 4 3 1 3
## 1306 5 4 5 4
## 1307 5 4 5 3
## 1308 5 4 5 4
## 1309 5 4 3 5
## 1310 5 3 4 4
## 1311 5 4 4 3
## 1312 5 5 5 4
## 1313 5 5 4 5
## 1314 5 4 5 4
## 1315 5 4 4 4
## 1316 4 5 4 5
## 1317 5 5 3 5
## 1318 5 3 4 5
## 1319 5 4 4 4
## 1320 5 5 4 3
## 1321 5 5 5 5
## 1322 5 4 5 3
## 1323 5 3 3 5
## 1324 3 3 3 1
## 1325 5 3 3 5
## 1326 3 3 3 2
## 1327 5 3 4 3
## 1328 4 5 5 4
## 1329 4 5 5 5
## 1330 5 4 3 4
## 1331 5 4 4 4
## 1332 5 5 4 3
## 1333 5 4 5 4
## 1334 5 4 3 2
## 1335 4 3 3 3
## 1336 2 3 1 3
## 1337 5 5 5 5
## 1338 5 5 4 5
## 1339 5 3 3 4
## 1340 4 4 4 4
## 1341 4 3 3 1
## 1342 4 3 4 3
## 1343 5 4 3 5
## 1344 5 3 4 2
## 1345 4 5 3 4
## 1346 5 5 5 4
## 1347 4 5 5 4
## 1348 5 5 5 4
## 1349 5 5 3 3
## 1350 5 5 4 4
## 1351 5 5 5 5
## 1352 5 5 4 5
## 1353 4 4 4 4
## 1354 5 3 4 5
## 1355 5 4 3 3
## 1356 4 4 5 2
## 1357 5 5 5 5
## 1358 5 3 3 3
## 1359 4 3 4 3
## 1360 4 5 5 4
## 1361 4 3 4 4
## 1362 5 5 4 4
## 1363 4 5 4 4
## 1364 5 4 5 3
## 1365 5 5 5 4
## 1366 5 5 1 5
## 1367 3 3 3 3
## 1368 5 4 4 5
## 1369 4 4 2 5
## 1370 5 2 3 3
## 1371 4 3 3 3
## 1372 4 4 4 4
## 1373 4 4 3 5
## 1374 5 4 5 4
## 1375 5 4 5 4
## 1376 3 3 3 3
## 1377 4 4 4 4
## 1378 5 3 4 4
## 1379 5 4 4 5
## 1380 5 3 3 5
## 1381 1 2 2 3
## 1382 4 4 5 3
## 1383 5 5 5 5
## 1384 5 3 5 3
## 1385 5 5 5 5
## 1386 4 4 5 3
## 1387 5 2 5 3
## 1388 4 4 4 3
## 1389 5 5 5 4
## 1390 4 4 5 4
## 1391 4 5 4 4
## 1392 4 3 3 3
## 1393 4 4 3 4
## 1394 5 4 4 5
## 1395 4 1 1 1
## 1396 4 4 4 3
## 1397 4 2 4 4
## 1398 5 5 5 5
## 1399 5 3 3 4
## 1400 5 5 5 4
## 1401 5 3 5 3
## 1402 5 4 4 3
## 1403 4 3 5 2
## 1404 4 4 4 4
## 1405 5 4 3 4
## 1406 5 4 3 3
## 1407 5 4 4 5
## 1408 5 5 5 5
## 1409 5 4 4 3
## 1410 5 3 4 3
## 1411 5 3 5 4
## 1412 5 4 3 4
## 1413 5 5 5 4
## 1414 5 4 4 4
## 1415 5 4 3 3
## 1416 5 4 4 3
## 1417 5 4 5 3
## 1418 5 4 3 5
## 1419 5 4 4 3
## 1420 5 4 4 4
## 1421 5 4 3 4
## 1422 4 4 4 3
## 1423 5 5 4 5
## 1424 5 4 5 4
## 1425 5 5 3 5
## 1426 4 4 5 4
## 1427 4 4 5 4
## 1428 5 5 5 5
## 1429 5 4 4 5
## 1430 5 3 3 3
## 1431 4 4 4 4
## 1432 4 5 4 3
## 1433 4 5 4 4
## 1434 5 4 4 4
## 1435 5 5 5 4
## 1436 5 4 5 5
## 1437 5 4 4 4
## 1438 4 5 5 4
## 1439 4 4 5 3
## 1440 4 4 4 3
## 1441 4 4 4 4
## 1442 4 4 4 5
## 1443 5 4 3 3
## 1444 4 4 5 2
## 1445 5 3 3 5
## 1446 4 4 5 4
## 1447 5 5 2 5
## 1448 4 4 3 4
## 1449 5 4 5 3
## 1450 5 4 4 3
## 1451 5 5 5 5
## 1452 2 3 3 4
## 1453 4 3 4 5
## 1454 3 1 1 4
## 1455 4 3 5 4
## 1456 5 5 5 3
## 1457 5 4 3 4
## 1458 5 5 3 5
## 1459 5 5 5 3
## 1460 4 5 3 5
## 1461 5 4 4 3
## 1462 5 5 5 5
## 1463 4 5 4 5
## 1464 5 5 3 3
## 1465 5 5 5 5
## 1466 4 5 3 5
## 1467 5 4 4 3
## 1468 5 4 4 3
## 1469 5 4 4 4
## 1470 5 5 5 4
## 1471 5 4 4 3
## 1472 5 4 5 4
## 1473 5 4 4 4
## 1474 4 4 5 3
## 1475 5 4 4 3
## 1476 3 3 4 4
## 1477 5 4 4 3
## 1478 5 4 4 3
## 1479 4 5 4 5
## 1480 5 4 4 4
## 1481 5 5 5 5
## 1482 5 4 4 3
## 1483 5 4 3 2
## 1484 5 3 3 5
## 1485 5 3 3 2
## 1486 3 4 5 2
## 1487 3 4 4 4
## 1488 5 5 4 5
## 1489 5 5 5 5
## 1490 4 3 4 3
## 1491 5 5 5 4
## 1492 4 4 4 5
## 1493 5 3 4 4
## 1494 5 2 3 4
## 1495 5 5 5 5
## 1496 5 5 5 5
## 1497 5 4 3 3
## 1498 5 3 4 4
## 1499 4 4 4 4
## 1500 5 4 3 3
## 1501 3 4 4 4
## 1502 5 4 4 4
## 1503 5 3 5 4
## 1504 5 5 5 4
## 1505 5 5 4 5
## 1506 5 5 5 4
## 1507 5 4 4 5
## 1508 5 4 3 4
## 1509 5 4 4 4
## 1510 4 4 4 4
## 1511 5 5 4 5
## 1512 4 4 5 2
## 1513 5 4 3 4
## 1514 5 5 5 4
## 1515 5 3 3 3
## 1516 5 4 2 3
## 1517 5 4 5 4
## 1518 5 4 3 4
## 1519 5 3 3 2
## 1520 5 5 5 4
## 1521 4 5 4 5
## 1522 5 5 4 5
## 1523 5 5 5 5
## 1524 4 5 4 5
## 1525 5 5 3 5
## 1526 5 4 4 5
## 1527 5 5 5 4
## 1528 5 4 5 3
## 1529 5 5 2 3
## 1530 5 4 4 3
## 1531 5 2 5 2
## 1532 4 4 4 3
## 1533 4 4 4 3
## 1534 5 3 3 3
## 1535 5 4 5 4
## 1536 5 4 5 4
## 1537 5 5 4 4
## 1538 5 5 5 4
## 1539 5 5 4 5
## 1540 5 4 4 4
## 1541 4 4 3 3
## 1542 5 5 5 4
## 1543 5 4 4 3
## 1544 5 4 5 4
## 1545 5 5 5 5
## 1546 5 5 3 5
## 1547 5 5 3 5
## 1548 5 3 3 5
## 1549 3 3 3 3
## 1550 5 4 4 4
## 1551 5 4 3 2
## 1552 5 4 4 4
## 1553 5 5 4 4
## 1554 5 4 5 3
## 1555 5 4 4 5
## 1556 5 4 5 5
## 1557 5 5 5 5
## 1558 4 4 3 5
## 1559 5 4 5 4
## 1560 5 5 3 5
## 1561 4 4 4 3
## 1562 4 3 2 3
## 1563 4 3 3 3
## 1564 5 5 4 5
## 1565 4 4 3 4
## 1566 5 5 3 5
## 1567 4 5 5 4
## 1568 5 3 4 3
## 1569 5 4 4 3
## 1570 5 5 2 4
## 1571 3 3 3 3
## 1572 4 4 4 3
## 1573 5 4 4 3
## 1574 4 5 4 3
## 1575 5 5 3 3
## 1576 5 3 3 4
## 1577 5 4 5 4
## 1578 5 5 4 2
## 1579 4 4 3 3
## 1580 5 5 4 5
## 1581 5 4 4 4
## 1582 5 4 5 2
## 1583 3 4 3 4
## 1584 4 4 3 5
## 1585 5 3 3 3
## 1586 1 1 1 1
## 1587 5 4 4 4
## 1588 4 4 4 4
## 1589 5 4 4 4
## 1590 5 3 5 2
## 1591 5 5 5 5
## 1592 5 5 5 4
## 1593 5 5 5 5
## 1594 5 4 5 3
## 1595 4 4 4 5
## 1596 4 4 4 2
## 1597 5 4 4 4
## 1598 5 5 4 2
## 1599 5 4 4 3
## 1600 4 3 3 3
## 1601 5 4 3 4
## 1602 4 5 4 5
## 1603 5 3 4 3
## 1604 4 4 4 4
## 1605 5 5 5 5
## 1606 3 5 5 5
## 1607 5 4 4 3
## 1608 5 5 3 5
## 1609 5 4 3 4
## 1610 4 4 3 5
## 1611 1 2 3 2
## 1612 5 5 2 5
## 1613 4 4 5 5
## 1614 4 4 4 5
## 1615 5 3 3 3
## 1616 5 5 4 5
## 1617 5 4 5 5
## 1618 5 4 3 5
## 1619 5 4 4 5
## 1620 5 5 5 5
## 1621 3 5 4 3
## 1622 5 5 4 5
## 1623 5 5 5 5
## 1624 5 5 2 5
## 1625 4 3 4 3
## 1626 5 4 3 4
## 1627 5 4 3 3
## 1628 4 4 3 3
## 1629 4 4 4 4
## 1630 5 5 4 3
## 1631 5 4 3 4
## 1632 3 5 4 2
## 1633 4 4 2 4
## 1634 4 4 3 4
## 1635 5 3 3 3
## 1636 4 4 4 3
## 1637 5 5 5 5
## 1638 5 5 4 4
## 1639 5 4 4 3
## 1640 5 4 4 2
## 1641 5 5 5 5
## 1642 5 5 3 4
## 1643 5 5 4 5
## 1644 5 5 4 5
## 1645 4 4 2 4
## 1646 5 5 4 5
## 1647 5 5 5 5
## 1648 5 4 3 5
## 1649 5 5 4 4
## 1650 4 4 4 4
## 1651 4 3 4 3
## 1652 5 5 5 5
## 1653 5 4 4 5
## 1654 5 3 2 3
## 1655 5 5 5 5
## 1656 5 5 2 5
## 1657 3 3 3 3
## 1658 5 5 4 4
## 1659 5 4 4 4
## 1660 4 3 4 3
## 1661 3 3 3 4
## 1662 4 3 3 5
## 1663 5 4 4 5
## 1664 5 5 3 5
## 1665 4 4 4 5
## 1666 4 4 4 3
## 1667 5 3 4 4
## 1668 5 3 3 4
## 1669 3 2 3 2
## 1670 5 4 4 5
## 1671 5 5 4 4
## 1672 5 4 2 4
## 1673 5 5 3 3
## 1674 5 4 3 3
## 1675 5 4 4 4
## 1676 5 5 4 4
## 1677 4 3 3 3
## 1678 5 4 4 5
## 1679 5 5 3 4
## 1680 5 5 4 5
## 1681 4 3 3 3
## 1682 5 5 5 5
## 1683 5 4 4 3
## 1684 5 5 5 5
## 1685 5 4 3 4
## 1686 5 5 4 3
## 1687 3 5 3 5
## 1688 5 4 3 4
## 1689 5 5 5 5
## 1690 4 4 4 4
## 1691 5 4 4 5
## 1692 4 5 5 5
## 1693 5 4 4 3
## 1694 5 4 4 3
## 1695 5 5 5 5
## 1696 4 4 3 5
## 1697 5 5 5 5
## 1698 5 5 5 3
## 1699 5 5 5 5
## 1700 5 5 4 5
## 1701 5 5 5 5
## 1702 5 4 4 4
## 1703 4 4 4 2
## 1704 4 4 4 4
## 1705 5 4 4 4
## 1706 4 3 3 3
## 1707 4 4 4 4
## 1708 5 5 5 5
## 1709 4 2 4 4
## 1710 5 5 5 3
## 1711 4 5 4 4
## 1712 5 3 3 4
## 1713 4 4 5 5
## 1714 4 4 4 4
## 1715 4 5 5 5
## 1716 2 3 2 2
## 1717 5 5 5 2
## 1718 5 3 3 3
## 1719 4 3 5 4
## 1720 4 4 4 3
## 1721 5 4 4 3
## 1722 4 5 4 4
## 1723 5 4 3 4
## 1724 5 3 2 4
## 1725 5 3 3 3
## 1726 3 4 5 4
## 1727 5 2 2 5
## 1728 5 4 3 4
## 1729 5 2 5 2
## 1730 5 4 3 3
## 1731 5 4 4 4
## 1732 5 5 5 3
## 1733 5 5 5 4
## 1734 4 4 2 2
## 1735 5 3 5 5
## 1736 5 5 4 5
## 1737 5 4 4 4
## 1738 4 5 5 5
## 1739 5 3 3 3
## 1740 4 5 5 3
## 1741 4 4 4 4
## 1742 4 4 2 3
## 1743 5 5 5 3
## 1744 5 5 5 4
## 1745 5 5 4 4
## 1746 4 4 4 4
## 1747 5 4 3 4
## 1748 5 4 4 5
## 1749 5 4 3 5
## 1750 5 5 3 5
## 1751 3 4 5 2
## 1752 5 3 4 3
## 1753 5 4 5 4
## 1754 3 4 3 5
## 1755 5 4 3 4
## 1756 4 4 4 1
## 1757 4 5 4 4
## 1758 5 5 5 5
## 1759 5 5 4 4
## 1760 5 3 3 4
## 1761 5 5 5 4
## 1762 4 4 4 2
## 1763 5 4 5 2
## 1764 5 4 4 4
## 1765 5 3 4 3
## 1766 3 3 4 3
## 1767 5 4 4 5
## 1768 5 4 4 4
## 1769 5 4 3 4
## 1770 5 4 5 2
## 1771 5 4 4 4
## 1772 5 3 4 3
## 1773 5 5 4 5
## 1774 4 4 3 4
## 1775 5 5 4 5
## 1776 5 4 4 4
## 1777 5 5 5 5
## 1778 5 5 2 5
## 1779 4 3 3 3
## 1780 4 4 3 4
## 1781 5 4 3 4
## 1782 5 5 4 5
## 1783 5 5 4 5
## 1784 4 4 4 4
## 1785 5 4 4 3
## 1786 5 5 5 5
## 1787 5 3 3 3
## 1788 5 3 4 4
## 1789 5 5 5 5
## 1790 5 4 4 4
## 1791 3 3 3 3
## 1792 5 2 3 5
## 1793 5 5 5 5
## 1794 5 4 4 4
## 1795 5 5 5 3
## 1796 5 5 4 5
## 1797 5 5 4 5
## 1798 3 4 3 4
## 1799 5 4 4 5
## 1800 5 3 2 3
## 1801 5 4 4 5
## 1802 4 4 4 3
## 1803 5 3 4 3
## 1804 5 4 5 5
## 1805 4 5 4 5
## 1806 4 4 3 5
## 1807 4 4 3 3
## 1808 4 3 2 3
## 1809 5 5 5 5
## 1810 3 1 2 2
## 1811 5 4 3 3
## 1812 5 5 4 4
## 1813 5 5 5 5
## 1814 4 4 4 4
## 1815 5 4 4 4
## 1816 5 4 5 5
## 1817 4 3 3 4
## 1818 4 4 4 3
## 1819 5 4 4 4
## 1820 4 4 3 4
## 1821 5 5 5 5
## 1822 5 5 3 5
## 1823 5 5 5 4
## 1824 5 4 3 5
## 1825 5 5 5 4
## 1826 5 5 5 5
## 1827 5 3 5 4
## 1828 5 3 3 4
## 1829 5 4 4 5
## 1830 5 4 4 4
## 1831 5 5 4 5
## 1832 5 4 3 4
## 1833 5 5 5 5
## 1834 5 5 5 4
## 1835 5 5 4 5
## 1836 5 4 4 4
## 1837 5 4 5 2
## 1838 5 5 5 4
## 1839 5 5 3 5
## 1840 5 5 4 5
## 1841 5 4 4 5
## 1842 5 4 4 4
## 1843 5 5 5 4
## 1844 5 5 5 4
## 1845 4 4 4 5
## 1846 5 4 5 4
## 1847 4 4 4 3
## 1848 4 4 4 2
## 1849 5 4 3 5
## 1850 5 5 5 5
## 1851 5 4 3 4
## 1852 4 3 3 3
## 1853 4 5 4 4
## 1854 5 5 5 3
## 1855 5 4 4 4
## 1856 5 5 4 3
## 1857 4 4 3 4
## 1858 5 4 3 4
## 1859 5 5 4 4
## 1860 3 3 3 3
## 1861 5 5 5 4
## 1862 5 5 4 5
## 1863 4 3 4 4
## 1864 4 4 3 5
## 1865 5 4 3 3
## 1866 5 4 4 4
## 1867 5 5 4 5
## 1868 4 3 3 5
## 1869 4 4 4 5
## 1870 4 3 3 3
## 1871 5 5 5 5
## 1872 5 4 4 3
## 1873 5 3 3 3
## 1874 5 5 5 4
## 1875 5 4 4 3
## 1876 4 4 4 4
## 1877 4 5 4 3
## 1878 4 5 5 3
## 1879 4 4 4 4
## 1880 5 4 5 4
## 1881 5 3 4 4
## 1882 5 5 5 5
## 1883 4 3 4 4
## 1884 4 4 4 5
## 1885 4 3 5 3
## 1886 4 4 4 3
## 1887 5 4 4 4
## 1888 4 4 3 3
## 1889 5 5 4 5
## 1890 3 2 2 3
## 1891 5 5 4 4
## 1892 5 5 5 5
## 1893 4 4 4 3
## 1894 4 3 4 3
## 1895 5 4 4 3
## 1896 5 5 5 5
## 1897 4 4 3 3
## 1898 4 3 5 3
## 1899 5 5 5 5
## 1900 5 5 4 5
## 1901 5 4 4 3
## 1902 5 4 4 4
## 1903 5 5 3 4
## 1904 5 5 4 4
## 1905 4 4 5 4
## 1906 5 5 5 5
## 1907 4 4 4 3
## 1908 5 5 2 5
## 1909 4 4 4 3
## 1910 5 3 4 5
## 1911 5 5 5 5
## 1912 5 4 3 4
## 1913 5 5 4 5
## 1914 4 3 4 4
## 1915 3 4 5 4
## 1916 5 4 5 3
## 1917 4 3 3 3
## 1918 5 5 4 3
## 1919 5 5 5 5
## 1920 5 4 5 3
## 1921 4 4 4 4
## 1922 2 1 3 1
## 1923 5 4 4 3
## 1924 5 3 3 3
## 1925 4 4 5 3
## 1926 5 4 3 5
## 1927 4 4 4 5
## 1928 4 4 4 3
## 1929 5 3 4 4
## 1930 5 5 4 5
## 1931 4 4 3 4
## 1932 5 4 4 3
## 1933 5 4 5 3
## 1934 5 4 2 5
## 1935 5 5 5 5
## 1936 5 4 4 4
## 1937 3 4 5 3
## 1938 5 5 3 4
## happy_time.hobby happy_status happy_influence happy_religion happy_nature
## 1 4 2 3 5 5
## 2 3 3 4 4 4
## 3 5 2 2 1 5
## 4 4 4 4 4 4
## 5 4 4 5 2 5
## 6 5 3 3 1 4
## 7 4 3 3 3 5
## 8 4 2 2 1 4
## 9 4 3 4 2 5
## 10 3 1 3 1 3
## 11 4 3 3 3 4
## 12 3 2 3 5 5
## 13 3 2 3 1 5
## 14 5 3 5 1 5
## 15 4 3 4 1 3
## 16 4 3 4 3 3
## 17 4 3 3 3 4
## 18 3 1 1 1 4
## 19 4 4 3 2 4
## 20 3 2 2 1 5
## 21 4 2 2 3 4
## 22 4 2 3 5 5
## 23 4 2 3 5 5
## 24 5 2 2 1 5
## 25 5 4 3 1 2
## 26 4 3 3 2 4
## 27 5 5 5 1 5
## 28 3 3 3 1 3
## 29 5 3 3 1 3
## 30 5 2 2 5 5
## 31 4 2 3 1 2
## 32 4 2 2 2 5
## 33 4 1 1 1 3
## 34 4 2 3 2 4
## 35 3 2 2 1 2
## 36 3 3 3 4 4
## 37 3 3 3 1 3
## 38 5 5 3 4 3
## 39 5 2 2 1 5
## 40 2 2 2 2 3
## 41 5 2 3 3 3
## 42 3 2 4 2 5
## 43 2 2 2 1 2
## 44 4 2 3 2 4
## 45 4 2 2 2 3
## 46 3 1 1 5 1
## 47 4 3 4 2 4
## 48 3 2 2 2 5
## 49 4 4 4 2 4
## 50 5 1 2 2 5
## 51 5 4 4 3 5
## 52 4 4 4 3 3
## 53 4 3 4 3 4
## 54 4 3 3 2 5
## 55 4 2 3 2 3
## 56 4 2 3 3 3
## 57 2 2 3 4 5
## 58 3 1 2 1 5
## 59 4 3 3 2 5
## 60 4 4 4 4 4
## 61 4 1 2 1 4
## 62 4 2 3 3 3
## 63 3 2 3 2 5
## 64 4 4 4 5 4
## 65 3 2 3 4 5
## 66 3 3 3 2 5
## 67 4 2 4 5 5
## 68 4 2 4 2 5
## 69 3 2 3 5 5
## 70 5 1 2 1 4
## 71 5 3 2 2 5
## 72 3 3 3 2 3
## 73 4 3 4 2 4
## 74 3 2 2 1 2
## 75 5 2 3 1 4
## 76 4 2 3 3 4
## 77 4 3 4 3 4
## 78 4 1 1 1 3
## 79 5 3 3 4 5
## 80 3 2 3 2 3
## 81 5 2 4 1 5
## 82 4 3 4 4 4
## 83 5 2 3 1 4
## 84 4 2 2 1 5
## 85 4 2 4 1 5
## 86 4 4 3 5 4
## 87 3 3 2 3 4
## 88 5 3 4 4 4
## 89 5 2 4 1 5
## 90 4 3 3 3 3
## 91 4 1 2 1 2
## 92 4 3 2 2 5
## 93 5 4 4 1 2
## 94 5 3 3 5 4
## 95 4 3 3 2 3
## 96 4 4 4 3 4
## 97 4 2 2 1 5
## 98 2 1 3 1 4
## 99 2 2 1 1 1
## 100 5 4 4 2 5
## 101 4 2 3 1 4
## 102 5 4 3 1 4
## 103 3 4 3 4 4
## 104 3 3 3 3 3
## 105 5 2 2 2 5
## 106 3 1 3 1 5
## 107 5 2 2 4 5
## 108 4 2 3 3 5
## 109 3 2 2 5 3
## 110 5 3 2 2 5
## 111 3 2 2 5 5
## 112 4 2 3 1 5
## 113 4 3 4 5 5
## 114 5 2 4 3 5
## 115 5 4 3 2 3
## 116 5 2 2 1 5
## 117 3 3 3 1 2
## 118 3 3 3 1 4
## 119 3 1 3 3 5
## 120 4 2 3 2 5
## 121 5 2 3 1 5
## 122 4 3 4 2 4
## 123 4 3 3 1 4
## 124 3 3 3 4 5
## 125 2 3 4 5 4
## 126 3 1 4 3 4
## 127 3 1 3 1 2
## 128 3 3 3 2 4
## 129 3 3 4 1 4
## 130 1 1 1 1 1
## 131 4 1 3 1 4
## 132 2 1 3 1 2
## 133 4 3 4 5 4
## 134 5 4 3 1 2
## 135 4 2 3 1 4
## 136 4 3 4 3 4
## 137 4 2 3 1 4
## 138 4 2 2 2 3
## 139 3 1 2 1 5
## 140 4 3 3 1 3
## 141 5 2 3 1 4
## 142 4 2 3 2 4
## 143 2 2 2 1 4
## 144 3 3 1 1 4
## 145 4 2 2 1 4
## 146 4 3 3 1 4
## 147 5 2 3 1 5
## 148 3 1 4 1 5
## 149 5 2 5 1 5
## 150 3 1 3 1 5
## 151 5 3 3 2 3
## 152 4 1 4 1 4
## 153 3 3 3 4 3
## 154 3 3 4 1 5
## 155 5 3 5 3 4
## 156 3 2 3 2 3
## 157 3 3 2 2 4
## 158 4 3 2 2 4
## 159 4 2 3 3 4
## 160 5 2 3 2 4
## 161 4 1 2 5 4
## 162 4 2 2 2 4
## 163 5 3 3 2 4
## 164 4 1 4 3 4
## 165 3 3 4 3 4
## 166 4 2 3 2 5
## 167 5 4 4 3 4
## 168 3 2 3 1 5
## 169 4 4 3 1 5
## 170 5 2 2 3 5
## 171 5 3 3 3 5
## 172 4 3 3 1 5
## 173 4 2 3 1 3
## 174 4 2 3 3 5
## 175 5 4 4 3 5
## 176 3 2 2 5 5
## 177 5 2 5 5 5
## 178 4 2 3 1 3
## 179 3 2 2 2 4
## 180 4 3 3 5 4
## 181 5 1 3 1 5
## 182 4 3 3 5 5
## 183 4 2 2 4 4
## 184 4 2 2 5 5
## 185 5 3 4 5 5
## 186 4 4 5 1 4
## 187 4 2 4 3 4
## 188 5 2 3 2 4
## 189 4 3 2 2 4
## 190 5 3 3 2 4
## 191 5 3 5 2 5
## 192 3 2 2 2 4
## 193 3 1 2 5 4
## 194 4 2 3 2 4
## 195 4 2 3 5 4
## 196 3 2 3 4 4
## 197 5 2 2 3 5
## 198 5 2 3 1 5
## 199 4 2 3 1 5
## 200 5 3 5 5 5
## 201 3 2 3 1 2
## 202 4 1 4 5 5
## 203 3 2 2 4 5
## 204 5 3 3 3 3
## 205 3 2 4 5 5
## 206 4 3 3 2 5
## 207 5 4 4 5 3
## 208 4 2 4 1 3
## 209 4 3 3 3 3
## 210 5 4 3 1 3
## 211 4 3 2 3 4
## 212 4 2 3 1 5
## 213 3 4 3 5 3
## 214 4 2 3 1 5
## 215 3 2 2 4 5
## 216 5 3 2 5 5
## 217 5 4 3 2 3
## 218 5 4 2 1 4
## 219 4 2 4 3 4
## 220 4 2 3 5 5
## 221 3 2 4 3 4
## 222 3 3 3 1 3
## 223 3 2 3 2 3
## 224 3 2 2 1 2
## 225 5 3 3 1 5
## 226 4 2 4 2 3
## 227 2 2 3 2 4
## 228 5 3 4 3 5
## 229 5 3 4 1 5
## 230 4 4 4 3 4
## 231 4 2 3 2 4
## 232 3 3 2 2 3
## 233 1 1 1 5 5
## 234 4 2 2 2 5
## 235 5 5 5 5 5
## 236 5 2 2 1 4
## 237 5 5 4 5 5
## 238 4 3 3 1 3
## 239 5 2 2 1 3
## 240 3 2 3 1 3
## 241 2 2 3 3 3
## 242 3 2 2 1 4
## 243 5 2 3 1 4
## 244 4 3 3 1 4
## 245 4 2 2 2 4
## 246 4 4 5 4 2
## 247 3 1 4 1 4
## 248 4 2 4 1 4
## 249 4 3 2 3 5
## 250 3 3 2 5 5
## 251 4 3 3 4 5
## 252 3 2 3 3 5
## 253 3 2 3 5 5
## 254 3 2 3 4 5
## 255 3 3 3 5 4
## 256 3 1 1 1 3
## 257 4 3 4 3 5
## 258 4 3 3 5 5
## 259 4 1 3 1 5
## 260 4 3 3 2 3
## 261 5 3 4 4 5
## 262 3 3 4 2 3
## 263 4 1 1 1 5
## 264 4 2 2 1 5
## 265 4 2 4 1 5
## 266 5 1 3 4 5
## 267 5 5 3 4 5
## 268 2 1 3 5 3
## 269 3 2 3 2 3
## 270 4 2 3 1 4
## 271 4 4 4 1 2
## 272 5 5 5 5 5
## 273 5 4 3 5 5
## 274 5 5 5 4 5
## 275 5 5 4 5 5
## 276 4 3 3 1 5
## 277 3 1 2 3 4
## 278 4 2 3 2 4
## 279 3 2 3 5 5
## 280 3 2 3 2 4
## 281 4 2 3 3 4
## 282 4 2 3 2 5
## 283 4 3 3 3 5
## 284 5 2 4 4 5
## 285 4 2 2 4 5
## 286 5 4 3 2 4
## 287 3 2 2 3 4
## 288 3 2 2 2 3
## 289 4 3 4 3 4
## 290 4 2 3 1 2
## 291 5 1 3 4 5
## 292 3 2 3 1 5
## 293 3 3 3 3 4
## 294 4 2 3 2 3
## 295 4 2 2 4 2
## 296 4 2 3 3 3
## 297 4 4 3 3 4
## 298 3 2 3 2 3
## 299 5 2 4 1 5
## 300 4 4 4 4 4
## 301 3 3 3 3 4
## 302 4 3 4 5 4
## 303 4 5 4 1 5
## 304 5 2 3 3 4
## 305 1 1 1 1 1
## 306 5 2 3 2 3
## 307 4 3 3 1 3
## 308 4 3 3 2 4
## 309 4 1 1 1 3
## 310 4 2 3 1 4
## 311 4 3 2 4 4
## 312 5 4 4 2 3
## 313 5 3 3 1 3
## 314 4 2 2 1 4
## 315 5 5 5 5 5
## 316 5 2 3 2 4
## 317 4 2 3 4 4
## 318 3 1 3 1 4
## 319 5 3 3 2 3
## 320 4 2 3 2 3
## 321 5 4 4 1 5
## 322 4 3 3 3 4
## 323 3 2 2 1 2
## 324 3 1 4 1 3
## 325 3 3 4 1 3
## 326 2 1 2 5 4
## 327 5 3 3 1 5
## 328 5 2 2 5 5
## 329 3 2 2 1 4
## 330 4 1 1 1 3
## 331 3 2 4 3 5
## 332 4 2 2 2 4
## 333 4 3 5 4 4
## 334 5 2 2 5 5
## 335 2 1 3 3 1
## 336 5 2 4 1 3
## 337 5 2 4 4 5
## 338 4 2 3 1 3
## 339 4 2 1 2 5
## 340 5 4 4 4 5
## 341 5 4 4 1 5
## 342 3 3 2 1 2
## 343 2 2 2 3 3
## 344 3 1 1 2 4
## 345 3 3 3 1 3
## 346 4 1 4 4 5
## 347 4 2 4 4 5
## 348 4 1 2 1 3
## 349 5 2 3 1 5
## 350 4 2 2 2 5
## 351 5 4 4 3 5
## 352 5 2 5 5 5
## 353 5 4 3 1 5
## 354 5 3 5 4 5
## 355 5 2 3 5 4
## 356 3 2 3 1 4
## 357 5 3 2 2 5
## 358 4 4 4 2 4
## 359 5 1 2 2 5
## 360 4 2 4 1 4
## 361 4 3 3 3 3
## 362 3 2 4 2 3
## 363 5 5 5 2 5
## 364 5 3 3 2 4
## 365 4 2 2 1 4
## 366 3 3 3 5 4
## 367 4 3 2 2 3
## 368 3 2 2 5 2
## 369 4 3 3 2 5
## 370 4 3 5 2 5
## 371 4 2 3 2 3
## 372 4 3 3 3 4
## 373 3 1 3 1 3
## 374 5 3 3 3 5
## 375 4 3 5 2 5
## 376 3 2 3 4 4
## 377 5 1 5 1 5
## 378 5 2 3 1 5
## 379 4 3 4 1 5
## 380 4 3 4 1 5
## 381 5 3 5 5 5
## 382 3 1 2 1 3
## 383 4 2 2 1 2
## 384 3 1 3 1 4
## 385 3 3 4 4 5
## 386 3 1 2 1 3
## 387 5 3 3 3 4
## 388 5 3 4 4 5
## 389 3 1 3 2 5
## 390 5 1 5 1 5
## 391 5 1 2 1 4
## 392 3 2 3 1 2
## 393 4 3 3 1 4
## 394 4 3 4 5 5
## 395 4 3 4 2 3
## 396 5 1 3 4 5
## 397 4 2 2 4 4
## 398 5 4 5 5 4
## 399 3 2 3 2 5
## 400 3 3 2 2 3
## 401 3 2 3 2 4
## 402 4 2 2 5 4
## 403 3 3 2 2 4
## 404 5 3 3 5 5
## 405 5 3 2 1 5
## 406 3 3 3 3 3
## 407 3 3 4 3 4
## 408 4 3 3 3 5
## 409 5 3 3 2 5
## 410 4 2 2 1 2
## 411 4 3 2 3 4
## 412 5 3 3 1 1
## 413 5 2 5 1 4
## 414 4 2 2 4 5
## 415 4 4 4 5 5
## 416 5 1 5 3 5
## 417 2 1 1 3 3
## 418 4 3 4 2 4
## 419 4 3 3 4 4
## 420 3 2 2 2 3
## 421 5 3 3 5 5
## 422 4 2 3 2 3
## 423 4 4 4 4 4
## 424 5 3 4 3 4
## 425 3 3 2 1 1
## 426 3 3 3 2 3
## 427 5 2 4 3 4
## 428 4 3 3 1 4
## 429 4 3 2 1 4
## 430 3 1 4 4 5
## 431 4 2 3 2 4
## 432 4 3 3 1 3
## 433 3 3 4 1 5
## 434 4 3 3 3 3
## 435 3 2 3 2 2
## 436 4 3 4 3 4
## 437 3 3 4 5 5
## 438 5 3 4 5 5
## 439 3 2 3 1 3
## 440 4 2 2 4 4
## 441 4 2 4 1 4
## 442 4 3 3 5 5
## 443 4 3 3 5 5
## 444 4 3 3 1 4
## 445 4 3 2 3 5
## 446 5 3 3 4 5
## 447 4 2 3 4 5
## 448 3 1 2 1 5
## 449 5 3 5 4 4
## 450 5 3 4 1 3
## 451 4 3 3 5 5
## 452 3 3 3 1 3
## 453 5 4 4 2 5
## 454 5 1 2 1 4
## 455 4 3 3 2 4
## 456 5 2 3 4 5
## 457 5 2 3 1 5
## 458 3 3 3 1 3
## 459 3 2 2 1 3
## 460 5 4 5 1 3
## 461 4 3 4 3 4
## 462 3 2 2 3 4
## 463 4 3 4 5 5
## 464 5 2 3 5 5
## 465 3 2 2 3 5
## 466 1 1 1 3 4
## 467 5 2 4 3 5
## 468 4 3 2 1 2
## 469 5 1 5 1 5
## 470 4 2 4 5 5
## 471 4 2 4 4 5
## 472 4 2 2 1 2
## 473 5 4 4 3 4
## 474 5 4 4 5 5
## 475 3 1 1 1 3
## 476 4 5 4 3 4
## 477 5 3 5 3 5
## 478 4 3 3 2 4
## 479 5 5 2 1 5
## 480 5 2 2 2 4
## 481 4 2 2 5 5
## 482 5 4 3 2 4
## 483 3 3 2 1 4
## 484 5 2 5 1 5
## 485 5 3 3 1 3
## 486 5 2 2 1 5
## 487 5 3 3 2 4
## 488 4 2 3 5 5
## 489 3 2 3 2 3
## 490 3 2 4 1 5
## 491 3 3 2 3 3
## 492 4 1 2 3 5
## 493 2 2 2 5 3
## 494 5 3 2 3 4
## 495 5 4 4 4 5
## 496 5 5 5 1 5
## 497 5 2 2 5 5
## 498 4 5 4 5 5
## 499 3 2 3 2 5
## 500 5 4 4 3 4
## 501 5 3 3 3 3
## 502 3 4 3 3 3
## 503 5 2 3 3 5
## 504 3 2 2 1 2
## 505 4 4 3 5 5
## 506 3 3 2 2 4
## 507 3 2 3 4 4
## 508 5 3 3 3 4
## 509 4 3 3 3 3
## 510 5 2 3 4 5
## 511 4 1 3 3 3
## 512 5 1 1 2 5
## 513 2 1 1 1 5
## 514 4 2 1 1 4
## 515 2 2 1 3 4
## 516 5 2 2 1 4
## 517 3 2 2 1 3
## 518 4 1 4 1 5
## 519 4 3 3 3 5
## 520 4 3 3 3 4
## 521 4 3 3 1 4
## 522 4 4 4 4 4
## 523 3 1 4 2 4
## 524 5 4 4 5 5
## 525 4 2 4 1 3
## 526 4 3 4 1 5
## 527 4 4 3 4 4
## 528 4 1 1 1 1
## 529 4 4 4 3 5
## 530 4 3 2 4 4
## 531 4 2 1 1 4
## 532 3 3 2 2 4
## 533 3 2 1 1 1
## 534 5 1 5 3 5
## 535 4 3 5 3 5
## 536 4 2 2 2 4
## 537 3 2 2 1 4
## 538 4 2 3 2 4
## 539 4 3 4 1 4
## 540 5 2 3 1 5
## 541 3 2 3 2 5
## 542 3 3 2 4 4
## 543 5 2 5 1 5
## 544 3 2 2 3 3
## 545 5 2 4 1 2
## 546 3 2 3 2 4
## 547 5 2 3 1 4
## 548 5 2 2 1 4
## 549 4 3 4 2 3
## 550 5 3 3 2 5
## 551 4 4 4 3 4
## 552 4 2 2 1 4
## 553 5 3 4 1 3
## 554 3 2 3 1 3
## 555 4 4 3 4 4
## 556 5 2 4 1 3
## 557 5 2 2 3 5
## 558 4 2 2 4 5
## 559 4 2 3 3 3
## 560 4 4 4 5 4
## 561 4 1 2 1 5
## 562 5 2 5 1 5
## 563 4 2 3 2 5
## 564 1 1 3 1 3
## 565 5 2 3 1 5
## 566 4 2 5 2 5
## 567 5 5 5 5 5
## 568 4 2 2 1 4
## 569 5 1 1 5 5
## 570 4 2 4 1 5
## 571 5 5 5 5 5
## 572 3 3 2 1 4
## 573 4 2 3 1 3
## 574 5 2 2 1 5
## 575 5 3 3 3 4
## 576 5 2 4 5 5
## 577 3 3 3 2 4
## 578 3 4 2 2 3
## 579 5 4 4 3 5
## 580 2 2 2 2 2
## 581 5 2 2 5 5
## 582 4 2 2 3 4
## 583 4 3 2 5 4
## 584 4 3 2 1 3
## 585 4 3 3 4 4
## 586 4 3 3 5 5
## 587 5 1 2 2 4
## 588 5 2 3 1 5
## 589 3 1 1 5 4
## 590 4 2 5 5 5
## 591 3 1 3 1 3
## 592 4 1 2 1 1
## 593 5 4 2 4 5
## 594 4 1 2 1 5
## 595 2 2 3 2 4
## 596 5 4 4 1 4
## 597 5 3 5 5 5
## 598 3 2 2 2 4
## 599 4 2 3 2 5
## 600 3 4 2 4 5
## 601 4 2 3 3 5
## 602 5 1 3 1 5
## 603 4 3 3 3 5
## 604 4 1 3 1 5
## 605 3 2 3 1 3
## 606 3 3 3 2 5
## 607 5 1 3 1 5
## 608 5 2 3 4 5
## 609 3 1 3 1 3
## 610 5 2 5 3 5
## 611 4 2 4 1 3
## 612 3 2 1 1 3
## 613 4 4 4 2 5
## 614 4 4 4 4 4
## 615 5 2 4 1 4
## 616 4 3 4 4 5
## 617 4 1 3 3 5
## 618 4 3 4 1 4
## 619 3 2 2 5 5
## 620 5 2 2 4 4
## 621 5 2 4 2 5
## 622 5 2 3 3 4
## 623 3 2 2 1 2
## 624 4 3 3 3 3
## 625 3 3 4 3 5
## 626 4 2 2 1 5
## 627 5 3 3 1 2
## 628 4 1 4 3 5
## 629 3 2 3 2 3
## 630 3 1 4 1 5
## 631 4 2 3 1 5
## 632 5 3 3 4 4
## 633 1 3 2 3 3
## 634 5 2 3 1 5
## 635 5 3 4 2 4
## 636 3 3 3 1 3
## 637 3 3 2 5 5
## 638 3 2 2 1 3
## 639 3 3 5 2 2
## 640 4 4 3 1 3
## 641 4 3 3 2 3
## 642 4 3 3 1 5
## 643 4 2 4 1 4
## 644 3 2 2 3 3
## 645 4 3 4 3 4
## 646 5 1 3 1 2
## 647 3 3 4 4 4
## 648 4 4 3 1 3
## 649 4 3 4 3 5
## 650 5 2 3 1 4
## 651 3 2 3 1 2
## 652 5 3 3 3 5
## 653 5 1 2 1 4
## 654 4 2 4 1 4
## 655 5 2 4 2 4
## 656 4 2 2 1 4
## 657 5 2 4 1 3
## 658 4 2 3 1 5
## 659 4 4 4 3 4
## 660 3 3 3 1 4
## 661 5 3 3 3 4
## 662 3 2 4 1 4
## 663 4 3 3 1 3
## 664 5 4 4 1 2
## 665 5 2 3 3 4
## 666 4 2 3 4 5
## 667 5 2 4 5 5
## 668 3 3 3 3 4
## 669 5 3 4 1 3
## 670 5 2 5 2 5
## 671 5 2 4 5 5
## 672 4 3 2 3 4
## 673 4 3 5 1 4
## 674 5 1 2 5 3
## 675 5 2 1 2 4
## 676 5 3 3 5 4
## 677 4 4 4 2 4
## 678 5 3 3 1 4
## 679 4 2 4 4 3
## 680 4 1 2 1 4
## 681 3 2 4 2 3
## 682 4 4 3 1 2
## 683 5 1 2 3 4
## 684 5 5 3 3 3
## 685 5 2 3 1 3
## 686 5 2 2 1 4
## 687 5 2 4 1 4
## 688 5 1 2 1 5
## 689 3 2 2 2 3
## 690 4 3 3 3 4
## 691 4 1 2 1 5
## 692 3 2 2 4 5
## 693 5 2 3 1 4
## 694 4 2 2 1 5
## 695 4 3 4 4 4
## 696 4 2 2 2 3
## 697 5 3 4 4 4
## 698 4 3 3 2 4
## 699 5 4 4 1 4
## 700 4 2 2 2 3
## 701 3 1 2 1 4
## 702 5 2 2 3 4
## 703 5 4 3 3 4
## 704 4 4 3 1 5
## 705 3 3 4 1 5
## 706 4 3 3 1 5
## 707 5 2 3 4 4
## 708 4 2 2 1 5
## 709 5 4 4 2 4
## 710 5 2 3 5 4
## 711 4 3 3 2 5
## 712 4 2 2 2 4
## 713 4 1 1 3 3
## 714 4 2 3 3 5
## 715 3 2 3 2 5
## 716 4 4 4 4 5
## 717 4 3 3 3 4
## 718 3 3 1 3 4
## 719 5 5 2 4 5
## 720 4 3 3 3 4
## 721 4 4 3 4 4
## 722 3 2 4 1 3
## 723 3 2 3 1 3
## 724 5 2 4 1 4
## 725 5 3 3 3 5
## 726 5 3 4 1 5
## 727 4 2 3 1 4
## 728 3 2 4 1 4
## 729 3 1 2 1 3
## 730 5 3 3 2 4
## 731 5 2 5 3 5
## 732 3 1 1 1 4
## 733 4 3 3 2 5
## 734 4 3 3 4 5
## 735 4 1 2 4 5
## 736 4 1 3 1 3
## 737 3 3 3 2 4
## 738 5 2 2 5 5
## 739 4 2 3 2 4
## 740 5 4 4 5 5
## 741 4 2 2 2 4
## 742 5 5 5 5 5
## 743 4 3 4 3 5
## 744 5 2 3 1 4
## 745 4 2 3 3 3
## 746 3 2 4 1 4
## 747 4 2 4 1 5
## 748 5 4 3 5 5
## 749 5 3 4 1 5
## 750 2 3 4 4 5
## 751 4 3 3 1 1
## 752 4 2 3 3 4
## 753 5 2 3 3 5
## 754 3 1 1 4 4
## 755 4 2 3 3 4
## 756 3 3 3 3 3
## 757 3 2 3 1 3
## 758 3 3 2 4 4
## 759 4 2 2 1 5
## 760 5 3 3 2 5
## 761 4 3 4 4 4
## 762 5 3 4 1 3
## 763 4 2 2 1 5
## 764 4 2 2 5 5
## 765 4 3 3 5 5
## 766 4 1 3 1 4
## 767 3 2 2 1 4
## 768 5 1 3 1 5
## 769 5 3 4 2 3
## 770 3 2 2 3 3
## 771 5 1 2 1 5
## 772 3 1 2 1 4
## 773 4 3 3 1 2
## 774 4 3 2 1 4
## 775 4 4 3 5 5
## 776 3 1 2 1 5
## 777 4 3 3 1 5
## 778 3 2 2 1 2
## 779 5 1 3 1 4
## 780 5 2 2 1 5
## 781 3 3 4 1 4
## 782 4 4 3 4 3
## 783 5 3 3 2 3
## 784 4 3 3 3 4
## 785 3 3 2 2 4
## 786 4 3 3 4 4
## 787 4 4 4 1 4
## 788 5 2 5 1 5
## 789 4 1 1 1 2
## 790 5 3 2 1 3
## 791 5 2 3 2 3
## 792 3 4 4 4 4
## 793 4 2 2 2 4
## 794 4 1 2 5 5
## 795 5 2 4 2 4
## 796 5 3 2 2 5
## 797 5 3 2 1 3
## 798 5 3 4 1 5
## 799 4 4 4 3 4
## 800 4 2 3 1 5
## 801 4 2 3 3 5
## 802 5 2 2 3 3
## 803 3 2 3 1 4
## 804 4 2 3 2 3
## 805 3 2 3 2 5
## 806 5 2 2 1 4
## 807 3 3 3 1 4
## 808 3 2 5 2 3
## 809 5 3 3 4 4
## 810 4 2 3 2 4
## 811 4 3 3 5 4
## 812 5 2 2 1 4
## 813 2 2 2 4 5
## 814 4 2 2 1 5
## 815 4 2 2 1 4
## 816 5 1 2 5 5
## 817 5 2 3 5 5
## 818 3 3 3 2 4
## 819 4 2 3 5 5
## 820 3 3 3 5 4
## 821 5 4 3 3 5
## 822 3 3 3 3 5
## 823 3 3 3 3 4
## 824 3 3 2 2 5
## 825 3 2 4 1 4
## 826 3 3 3 1 3
## 827 5 1 2 2 5
## 828 4 2 3 1 3
## 829 2 1 2 1 4
## 830 3 3 2 1 3
## 831 2 1 3 1 4
## 832 4 2 3 3 4
## 833 4 3 2 1 3
## 834 3 3 2 2 5
## 835 5 2 3 1 5
## 836 2 2 3 1 2
## 837 4 1 4 1 4
## 838 4 3 4 4 4
## 839 5 2 3 3 3
## 840 4 1 1 1 4
## 841 5 2 5 5 5
## 842 3 2 2 1 3
## 843 3 2 3 2 4
## 844 5 1 2 1 5
## 845 5 2 4 2 5
## 846 3 1 1 2 4
## 847 5 2 2 1 5
## 848 5 2 2 2 4
## 849 3 2 3 2 3
## 850 3 3 3 3 5
## 851 5 1 1 2 5
## 852 4 3 4 5 5
## 853 5 1 2 1 5
## 854 5 1 1 1 4
## 855 4 1 2 3 5
## 856 3 2 3 1 5
## 857 3 3 3 2 3
## 858 5 2 4 1 5
## 859 5 4 5 5 5
## 860 3 2 2 4 3
## 861 3 3 3 3 3
## 862 4 4 4 3 3
## 863 5 3 3 2 3
## 864 5 4 3 2 4
## 865 4 3 3 4 4
## 866 2 3 3 3 3
## 867 4 2 4 1 5
## 868 4 3 3 3 4
## 869 4 4 3 1 2
## 870 5 2 4 4 5
## 871 4 2 2 1 5
## 872 3 3 4 3 3
## 873 5 4 3 1 5
## 874 2 2 2 5 4
## 875 3 2 4 5 5
## 876 5 4 4 1 5
## 877 5 1 4 2 5
## 878 3 2 3 3 5
## 879 5 1 2 1 5
## 880 4 2 2 2 5
## 881 4 2 3 2 3
## 882 4 4 4 4 4
## 883 4 2 2 5 4
## 884 5 2 2 3 4
## 885 3 4 2 1 4
## 886 5 2 2 3 4
## 887 4 3 2 4 4
## 888 3 3 3 4 5
## 889 4 3 2 1 3
## 890 3 2 3 2 4
## 891 2 2 3 2 5
## 892 4 2 2 2 5
## 893 5 1 2 2 5
## 894 5 3 2 1 3
## 895 3 2 5 1 2
## 896 5 2 2 1 5
## 897 3 1 2 1 2
## 898 3 2 3 1 5
## 899 3 3 5 4 5
## 900 5 4 4 2 4
## 901 4 3 4 1 5
## 902 4 2 2 4 5
## 903 3 2 2 3 3
## 904 3 2 1 1 2
## 905 5 4 4 4 4
## 906 4 3 4 1 3
## 907 4 2 3 2 4
## 908 4 3 3 5 5
## 909 1 1 1 1 3
## 910 3 1 2 3 4
## 911 4 2 3 2 5
## 912 4 3 3 3 3
## 913 4 4 4 2 4
## 914 4 4 4 1 3
## 915 4 4 3 3 5
## 916 5 1 3 1 5
## 917 3 1 4 2 4
## 918 5 1 3 2 3
## 919 4 2 3 1 2
## 920 4 2 3 1 4
## 921 4 2 3 1 5
## 922 3 2 2 1 4
## 923 3 2 3 1 5
## 924 4 5 2 2 5
## 925 4 3 3 2 3
## 926 1 2 2 4 4
## 927 5 2 4 1 3
## 928 3 4 4 3 3
## 929 3 3 4 1 3
## 930 4 1 2 1 4
## 931 2 2 1 1 5
## 932 2 4 5 3 5
## 933 5 4 4 2 5
## 934 4 3 3 1 3
## 935 5 4 4 3 5
## 936 4 4 3 5 5
## 937 5 3 4 4 5
## 938 4 2 3 2 4
## 939 3 2 4 1 4
## 940 4 2 3 2 4
## 941 4 4 3 1 4
## 942 3 2 2 3 3
## 943 4 3 4 3 4
## 944 4 1 1 1 4
## 945 5 3 2 2 4
## 946 4 3 2 2 2
## 947 5 3 4 3 5
## 948 4 2 4 5 4
## 949 4 2 3 3 5
## 950 5 3 2 5 3
## 951 3 1 2 1 4
## 952 3 2 3 1 4
## 953 4 3 2 4 5
## 954 5 2 4 2 5
## 955 5 3 3 2 4
## 956 2 3 4 2 5
## 957 3 3 2 4 5
## 958 5 3 3 4 5
## 959 2 2 2 3 4
## 960 4 2 3 1 5
## 961 3 2 2 2 3
## 962 3 2 2 1 3
## 963 4 2 3 2 5
## 964 4 4 4 2 2
## 965 3 2 2 1 4
## 966 4 2 4 4 5
## 967 4 3 2 1 3
## 968 4 3 4 1 4
## 969 3 3 2 2 4
## 970 4 3 4 4 4
## 971 4 2 3 1 2
## 972 5 1 3 3 5
## 973 3 2 3 2 5
## 974 2 2 2 1 4
## 975 4 4 5 4 4
## 976 3 4 4 1 2
## 977 5 4 4 3 5
## 978 4 1 2 1 4
## 979 4 2 1 2 5
## 980 3 1 2 1 5
## 981 4 3 3 1 4
## 982 4 2 3 1 4
## 983 5 3 3 1 5
## 984 3 3 2 2 5
## 985 3 3 3 3 4
## 986 3 2 4 1 2
## 987 4 1 3 1 5
## 988 4 3 3 2 4
## 989 4 1 4 1 4
## 990 5 2 2 5 4
## 991 3 3 3 2 5
## 992 3 3 4 4 4
## 993 5 3 4 5 5
## 994 4 2 2 5 3
## 995 4 3 3 3 5
## 996 4 2 4 2 3
## 997 4 3 3 3 5
## 998 2 2 2 1 5
## 999 4 2 3 3 4
## 1000 5 2 2 1 2
## 1001 4 1 4 1 5
## 1002 5 4 5 5 5
## 1003 4 4 4 3 4
## 1004 3 2 3 1 2
## 1005 5 5 4 1 3
## 1006 4 3 2 1 4
## 1007 5 4 4 4 4
## 1008 5 1 2 1 5
## 1009 4 4 4 3 4
## 1010 5 1 4 1 5
## 1011 3 4 3 5 4
## 1012 5 5 5 5 5
## 1013 4 2 4 1 4
## 1014 3 3 3 2 3
## 1015 3 3 3 3 4
## 1016 4 3 4 4 4
## 1017 4 1 3 3 5
## 1018 5 2 2 2 5
## 1019 5 4 4 5 4
## 1020 4 2 3 3 3
## 1021 5 2 3 1 5
## 1022 5 2 3 1 4
## 1023 4 2 2 2 4
## 1024 5 3 3 4 4
## 1025 3 2 3 2 4
## 1026 5 2 3 1 4
## 1027 5 1 3 1 4
## 1028 3 1 2 3 4
## 1029 5 5 5 1 5
## 1030 4 3 3 5 5
## 1031 5 2 4 1 5
## 1032 4 1 3 5 4
## 1033 4 2 4 1 2
## 1034 3 2 2 2 4
## 1035 4 2 2 2 4
## 1036 3 2 3 1 4
## 1037 4 2 1 3 5
## 1038 3 2 4 5 3
## 1039 5 3 4 5 5
## 1040 5 4 5 1 4
## 1041 4 4 4 3 5
## 1042 5 5 5 1 5
## 1043 4 4 3 3 5
## 1044 4 3 1 2 4
## 1045 3 1 2 2 3
## 1046 4 1 5 4 5
## 1047 5 5 5 2 5
## 1048 4 3 2 2 4
## 1049 4 2 2 1 4
## 1050 3 3 3 3 4
## 1051 4 3 5 1 4
## 1052 4 3 3 1 4
## 1053 3 3 2 3 3
## 1054 3 3 4 4 5
## 1055 5 3 3 1 4
## 1056 3 2 3 2 4
## 1057 4 3 3 1 5
## 1058 5 2 3 4 4
## 1059 3 2 2 2 5
## 1060 4 2 3 3 5
## 1061 5 4 4 1 5
## 1062 4 4 4 4 5
## 1063 3 1 2 1 3
## 1064 5 2 3 2 5
## 1065 5 3 5 5 4
## 1066 4 4 4 4 4
## 1067 4 3 2 3 3
## 1068 5 4 4 1 5
## 1069 5 3 4 1 5
## 1070 3 2 3 3 4
## 1071 1 1 1 4 5
## 1072 5 4 3 1 2
## 1073 4 2 4 2 4
## 1074 5 2 4 2 5
## 1075 5 3 3 3 5
## 1076 4 2 2 2 5
## 1077 3 2 3 5 5
## 1078 4 3 4 2 2
## 1079 5 2 2 5 5
## 1080 4 3 3 3 4
## 1081 4 3 4 2 5
## 1082 5 4 3 3 4
## 1083 3 4 4 2 5
## 1084 3 3 3 3 4
## 1085 5 2 3 2 4
## 1086 5 3 3 3 5
## 1087 4 2 3 1 4
## 1088 5 3 3 3 5
## 1089 4 1 3 1 4
## 1090 3 3 3 1 4
## 1091 3 2 3 2 4
## 1092 4 2 3 2 4
## 1093 3 2 3 2 4
## 1094 5 3 5 1 3
## 1095 5 3 5 2 5
## 1096 4 3 4 1 3
## 1097 3 2 2 2 4
## 1098 1 1 2 5 4
## 1099 5 4 4 4 5
## 1100 5 4 3 2 4
## 1101 4 3 3 2 4
## 1102 3 3 3 1 4
## 1103 2 3 3 4 4
## 1104 3 3 4 1 3
## 1105 2 1 4 1 5
## 1106 4 1 4 1 3
## 1107 3 3 4 2 4
## 1108 4 3 2 4 4
## 1109 5 4 4 1 5
## 1110 3 3 4 2 4
## 1111 3 2 2 1 2
## 1112 4 1 5 1 4
## 1113 3 2 2 5 5
## 1114 5 1 1 1 1
## 1115 2 1 2 4 3
## 1116 4 2 4 1 3
## 1117 4 4 4 3 4
## 1118 4 2 4 3 4
## 1119 3 2 3 1 5
## 1120 5 4 3 1 3
## 1121 5 1 4 1 4
## 1122 4 4 4 3 5
## 1123 5 2 4 1 4
## 1124 4 3 3 3 3
## 1125 3 2 3 2 4
## 1126 4 3 4 1 5
## 1127 2 2 2 4 5
## 1128 4 2 4 1 3
## 1129 3 2 3 1 3
## 1130 4 2 3 1 4
## 1131 5 2 3 1 3
## 1132 5 4 3 2 4
## 1133 5 2 2 2 5
## 1134 3 5 5 2 3
## 1135 4 2 2 2 5
## 1136 3 2 2 2 3
## 1137 5 2 3 1 5
## 1138 4 2 4 1 4
## 1139 4 4 4 1 4
## 1140 3 2 3 1 2
## 1141 3 2 3 5 4
## 1142 5 2 4 1 5
## 1143 3 3 3 3 5
## 1144 4 2 3 2 3
## 1145 3 3 3 2 2
## 1146 5 2 3 1 5
## 1147 5 1 4 1 4
## 1148 3 2 2 2 4
## 1149 2 3 3 2 5
## 1150 3 2 3 3 5
## 1151 4 2 3 1 3
## 1152 4 2 5 1 5
## 1153 5 2 3 1 3
## 1154 2 2 2 2 2
## 1155 5 2 4 1 5
## 1156 4 2 4 5 4
## 1157 4 4 5 3 3
## 1158 4 2 3 2 3
## 1159 5 1 3 1 3
## 1160 3 2 2 2 5
## 1161 2 2 2 1 3
## 1162 3 2 3 5 4
## 1163 3 2 3 3 4
## 1164 5 3 4 1 4
## 1165 3 4 3 1 5
## 1166 4 2 3 1 4
## 1167 3 2 3 1 4
## 1168 5 2 2 1 5
## 1169 4 2 2 1 4
## 1170 3 2 4 1 2
## 1171 3 2 3 4 4
## 1172 4 3 5 2 4
## 1173 5 1 2 2 5
## 1174 5 5 5 3 5
## 1175 5 1 1 1 5
## 1176 5 2 4 2 5
## 1177 3 2 2 1 4
## 1178 4 2 3 1 4
## 1179 3 3 3 2 3
## 1180 5 3 4 1 5
## 1181 4 2 3 1 4
## 1182 5 3 2 3 4
## 1183 4 4 3 4 4
## 1184 4 1 2 1 4
## 1185 5 2 1 3 5
## 1186 3 4 3 1 3
## 1187 5 2 3 1 3
## 1188 4 2 3 1 3
## 1189 5 2 2 1 4
## 1190 4 1 1 1 3
## 1191 5 2 3 3 4
## 1192 4 2 4 1 4
## 1193 4 3 5 2 4
## 1194 3 2 3 1 5
## 1195 3 2 2 1 5
## 1196 4 3 3 3 4
## 1197 3 1 2 1 2
## 1198 3 1 4 5 5
## 1199 4 4 3 5 5
## 1200 3 2 3 4 2
## 1201 4 2 3 3 4
## 1202 3 3 3 3 5
## 1203 4 2 3 3 4
## 1204 4 2 3 1 5
## 1205 3 2 3 1 3
## 1206 4 2 4 2 5
## 1207 3 4 4 3 3
## 1208 4 4 4 2 4
## 1209 4 1 1 5 4
## 1210 4 3 4 1 2
## 1211 3 3 4 2 4
## 1212 2 2 3 4 4
## 1213 3 1 1 1 1
## 1214 4 3 2 2 3
## 1215 5 3 3 1 5
## 1216 5 2 3 1 3
## 1217 5 3 5 1 5
## 1218 5 3 3 1 2
## 1219 4 4 4 4 4
## 1220 4 4 4 2 5
## 1221 5 5 1 4 3
## 1222 4 3 2 1 4
## 1223 5 1 1 1 5
## 1224 5 4 4 4 5
## 1225 5 2 3 1 5
## 1226 5 1 4 2 4
## 1227 4 3 3 2 3
## 1228 5 3 3 1 5
## 1229 4 3 3 2 4
## 1230 4 2 3 1 2
## 1231 4 3 4 1 4
## 1232 3 1 1 2 5
## 1233 5 2 4 1 5
## 1234 4 2 3 3 5
## 1235 4 3 1 1 5
## 1236 3 3 3 1 5
## 1237 3 2 3 1 5
## 1238 3 3 4 1 2
## 1239 3 2 4 1 3
## 1240 5 4 5 2 5
## 1241 5 2 5 1 2
## 1242 5 1 1 1 3
## 1243 5 3 3 3 4
## 1244 3 3 5 4 4
## 1245 3 5 3 1 4
## 1246 5 3 4 1 4
## 1247 5 5 5 5 5
## 1248 4 3 3 1 4
## 1249 4 3 3 1 5
## 1250 5 2 5 1 4
## 1251 5 4 4 5 5
## 1252 5 1 3 2 4
## 1253 3 1 1 1 5
## 1254 4 1 1 2 4
## 1255 2 2 5 3 5
## 1256 5 3 4 1 2
## 1257 4 2 3 2 5
## 1258 5 4 5 1 5
## 1259 4 2 2 3 3
## 1260 2 3 2 1 3
## 1261 4 3 3 1 4
## 1262 3 2 4 2 4
## 1263 3 3 3 2 4
## 1264 5 3 3 1 5
## 1265 5 3 4 1 5
## 1266 5 2 3 2 5
## 1267 5 3 4 1 3
## 1268 3 3 2 1 3
## 1269 5 2 3 1 4
## 1270 3 1 1 2 4
## 1271 4 2 3 1 5
## 1272 3 3 2 1 3
## 1273 4 3 3 1 5
## 1274 5 4 4 5 5
## 1275 5 4 4 5 5
## 1276 4 2 3 1 4
## 1277 2 2 2 3 4
## 1278 4 4 4 4 4
## 1279 4 2 3 1 5
## 1280 4 5 3 1 3
## 1281 5 4 4 5 4
## 1282 5 2 5 3 4
## 1283 5 5 5 1 5
## 1284 4 2 2 1 5
## 1285 5 4 4 1 5
## 1286 4 1 3 2 5
## 1287 4 4 4 1 5
## 1288 5 4 4 4 4
## 1289 4 2 4 3 3
## 1290 4 4 4 3 3
## 1291 4 2 4 1 1
## 1292 4 2 2 1 4
## 1293 4 3 2 1 3
## 1294 3 1 4 5 4
## 1295 3 2 2 3 4
## 1296 4 3 3 1 4
## 1297 4 1 3 3 5
## 1298 5 3 4 1 4
## 1299 4 2 2 2 4
## 1300 4 2 3 1 4
## 1301 4 3 3 5 4
## 1302 4 2 4 5 5
## 1303 3 2 2 2 2
## 1304 5 4 5 4 5
## 1305 2 2 2 1 3
## 1306 5 4 3 1 3
## 1307 4 3 3 2 4
## 1308 4 2 5 1 5
## 1309 4 3 3 3 5
## 1310 5 2 3 5 4
## 1311 4 2 2 1 5
## 1312 4 2 2 2 3
## 1313 4 3 2 2 4
## 1314 4 3 3 1 4
## 1315 4 4 4 5 5
## 1316 4 3 3 2 4
## 1317 5 4 4 4 5
## 1318 5 2 4 1 4
## 1319 4 3 3 2 4
## 1320 4 2 3 1 5
## 1321 5 2 2 4 5
## 1322 5 3 3 1 5
## 1323 3 1 3 1 5
## 1324 2 2 1 1 1
## 1325 5 2 3 1 4
## 1326 2 2 3 4 5
## 1327 3 1 1 1 5
## 1328 4 3 3 1 5
## 1329 1 1 4 1 4
## 1330 4 2 3 1 5
## 1331 5 2 2 2 4
## 1332 4 1 2 1 2
## 1333 3 2 3 2 5
## 1334 3 2 1 1 1
## 1335 5 3 3 1 2
## 1336 2 3 3 2 3
## 1337 4 5 5 3 5
## 1338 5 4 4 2 5
## 1339 4 1 2 1 5
## 1340 4 4 4 1 4
## 1341 5 1 1 1 1
## 1342 2 2 4 4 4
## 1343 5 2 2 2 3
## 1344 3 1 2 3 5
## 1345 4 3 4 2 2
## 1346 4 1 4 1 3
## 1347 5 1 2 5 4
## 1348 4 4 3 1 4
## 1349 4 2 3 2 4
## 1350 4 2 2 2 5
## 1351 5 3 3 1 4
## 1352 5 4 4 1 4
## 1353 4 2 3 3 3
## 1354 5 3 1 1 5
## 1355 4 3 4 2 3
## 1356 3 2 2 1 3
## 1357 5 3 5 5 5
## 1358 4 2 3 1 4
## 1359 4 2 2 2 3
## 1360 3 1 1 5 4
## 1361 4 2 2 1 4
## 1362 3 3 3 2 3
## 1363 3 2 3 2 3
## 1364 4 2 2 3 5
## 1365 3 2 4 4 5
## 1366 4 1 3 5 5
## 1367 4 3 2 1 4
## 1368 4 2 3 1 2
## 1369 4 3 1 5 5
## 1370 5 1 4 1 5
## 1371 3 2 2 2 3
## 1372 4 4 4 1 4
## 1373 5 2 3 2 5
## 1374 5 2 3 1 4
## 1375 4 3 2 3 4
## 1376 3 3 3 4 3
## 1377 4 2 2 1 5
## 1378 4 1 1 1 5
## 1379 5 3 3 3 5
## 1380 5 3 4 2 5
## 1381 3 4 2 2 3
## 1382 4 1 3 3 2
## 1383 5 4 4 1 4
## 1384 4 1 1 1 5
## 1385 5 5 5 5 5
## 1386 5 2 2 2 5
## 1387 5 1 2 1 2
## 1388 4 3 2 2 5
## 1389 4 4 2 1 4
## 1390 4 2 3 3 5
## 1391 3 1 3 1 4
## 1392 4 1 3 1 3
## 1393 4 3 3 1 2
## 1394 4 2 2 4 4
## 1395 1 1 1 3 3
## 1396 4 2 3 1 1
## 1397 4 2 3 2 4
## 1398 3 3 3 2 3
## 1399 3 1 1 1 4
## 1400 4 3 2 1 5
## 1401 5 3 3 4 5
## 1402 5 1 1 1 4
## 1403 3 2 3 4 4
## 1404 4 4 4 2 5
## 1405 4 2 3 2 3
## 1406 4 3 3 3 4
## 1407 4 4 4 4 5
## 1408 4 4 4 4 3
## 1409 3 3 4 3 4
## 1410 5 3 2 2 4
## 1411 5 1 2 1 4
## 1412 4 2 3 1 5
## 1413 4 2 3 4 5
## 1414 5 3 4 1 4
## 1415 4 3 4 4 5
## 1416 4 2 2 1 4
## 1417 4 2 1 1 1
## 1418 5 2 4 1 4
## 1419 3 2 2 3 4
## 1420 5 2 4 3 5
## 1421 3 2 4 1 3
## 1422 3 1 2 1 4
## 1423 5 4 4 1 4
## 1424 3 3 3 2 4
## 1425 5 2 4 3 3
## 1426 5 2 3 1 2
## 1427 5 4 5 1 4
## 1428 5 3 4 1 5
## 1429 5 2 2 1 5
## 1430 4 2 3 1 4
## 1431 4 2 3 3 4
## 1432 3 1 2 3 4
## 1433 5 2 2 1 4
## 1434 2 2 3 2 3
## 1435 5 3 2 4 3
## 1436 5 1 3 1 3
## 1437 4 2 3 1 4
## 1438 4 3 2 2 4
## 1439 4 1 3 1 5
## 1440 3 2 3 1 4
## 1441 3 3 3 1 2
## 1442 4 2 2 1 3
## 1443 4 3 2 1 5
## 1444 3 2 1 1 3
## 1445 5 2 3 3 5
## 1446 4 3 3 1 5
## 1447 5 1 5 1 5
## 1448 4 3 4 2 2
## 1449 3 3 3 2 4
## 1450 3 2 2 5 5
## 1451 4 4 3 5 4
## 1452 4 3 2 1 2
## 1453 5 2 2 1 2
## 1454 4 2 4 5 4
## 1455 4 1 5 3 3
## 1456 3 3 4 2 5
## 1457 4 3 3 4 4
## 1458 3 2 3 1 5
## 1459 3 3 3 5 5
## 1460 5 3 5 1 5
## 1461 2 1 1 1 3
## 1462 5 1 1 1 5
## 1463 5 4 4 2 5
## 1464 3 3 1 1 4
## 1465 4 3 4 3 4
## 1466 5 3 3 2 5
## 1467 4 1 2 3 3
## 1468 2 2 2 1 3
## 1469 4 3 3 1 4
## 1470 5 3 3 1 3
## 1471 4 4 3 1 3
## 1472 5 3 3 1 4
## 1473 4 4 4 4 4
## 1474 4 2 2 1 3
## 1475 3 3 3 1 4
## 1476 4 2 2 1 2
## 1477 5 3 2 1 5
## 1478 4 3 2 2 4
## 1479 5 4 5 1 5
## 1480 4 4 4 2 5
## 1481 3 2 4 5 5
## 1482 3 2 3 2 4
## 1483 2 2 2 1 2
## 1484 5 5 4 5 3
## 1485 4 2 2 3 3
## 1486 3 1 1 1 3
## 1487 4 1 2 5 5
## 1488 3 3 3 5 5
## 1489 5 3 3 4 5
## 1490 3 2 2 3 4
## 1491 5 4 3 4 4
## 1492 5 4 5 5 5
## 1493 3 2 3 5 5
## 1494 4 2 2 3 5
## 1495 5 2 3 2 5
## 1496 2 4 4 4 5
## 1497 3 1 2 2 4
## 1498 3 3 4 1 5
## 1499 4 3 3 1 5
## 1500 4 2 3 2 3
## 1501 4 2 3 1 5
## 1502 4 3 4 2 4
## 1503 3 4 4 1 4
## 1504 5 1 3 1 5
## 1505 4 2 4 1 5
## 1506 3 4 3 3 4
## 1507 5 4 3 1 5
## 1508 4 2 3 3 3
## 1509 4 3 3 1 2
## 1510 4 3 4 3 4
## 1511 5 5 5 4 5
## 1512 3 1 2 1 5
## 1513 4 2 4 3 5
## 1514 4 4 4 2 4
## 1515 3 2 2 3 3
## 1516 4 4 3 1 4
## 1517 4 2 3 3 4
## 1518 3 2 2 1 4
## 1519 3 1 2 1 2
## 1520 5 3 2 1 4
## 1521 3 2 2 3 3
## 1522 4 3 4 3 4
## 1523 5 5 5 1 3
## 1524 5 4 4 1 5
## 1525 5 1 4 1 5
## 1526 5 2 5 1 3
## 1527 4 5 5 4 2
## 1528 5 4 3 1 1
## 1529 3 2 3 1 4
## 1530 3 3 3 1 4
## 1531 3 2 2 5 5
## 1532 3 3 4 4 4
## 1533 5 3 3 1 3
## 1534 4 3 2 1 5
## 1535 4 2 5 1 5
## 1536 5 2 2 3 5
## 1537 4 3 3 1 3
## 1538 5 2 3 5 5
## 1539 5 2 4 1 3
## 1540 4 2 4 1 4
## 1541 4 2 2 1 2
## 1542 4 2 2 1 4
## 1543 3 2 3 2 3
## 1544 5 2 3 1 5
## 1545 4 4 4 1 3
## 1546 3 1 4 1 3
## 1547 3 2 2 1 1
## 1548 5 2 3 5 5
## 1549 3 3 3 3 3
## 1550 4 4 3 4 4
## 1551 4 1 2 3 5
## 1552 3 3 3 2 5
## 1553 3 2 3 1 5
## 1554 4 4 4 2 4
## 1555 4 2 3 3 4
## 1556 5 2 4 1 5
## 1557 5 2 4 1 5
## 1558 3 4 4 3 5
## 1559 4 3 3 1 4
## 1560 4 3 4 3 3
## 1561 3 4 2 4 5
## 1562 3 2 2 2 3
## 1563 4 1 3 1 2
## 1564 5 1 5 1 5
## 1565 5 4 3 5 5
## 1566 4 3 5 4 5
## 1567 3 3 3 1 1
## 1568 5 3 3 1 3
## 1569 5 3 4 1 5
## 1570 5 4 5 1 2
## 1571 3 3 3 3 3
## 1572 4 2 4 4 4
## 1573 3 3 3 1 3
## 1574 4 3 3 4 4
## 1575 5 3 3 3 4
## 1576 4 2 3 1 4
## 1577 4 3 3 5 5
## 1578 5 2 3 1 4
## 1579 4 3 2 1 4
## 1580 5 3 5 5 5
## 1581 4 4 2 1 3
## 1582 4 2 3 1 2
## 1583 4 3 3 2 3
## 1584 4 4 3 2 4
## 1585 4 1 1 1 5
## 1586 4 1 1 1 1
## 1587 4 3 3 3 3
## 1588 4 1 4 1 4
## 1589 5 2 3 1 4
## 1590 5 3 2 1 2
## 1591 5 2 4 5 4
## 1592 5 3 2 1 4
## 1593 5 5 5 5 5
## 1594 5 3 4 1 4
## 1595 5 2 4 1 2
## 1596 4 3 3 1 3
## 1597 4 2 3 1 4
## 1598 5 3 4 2 3
## 1599 5 1 3 1 5
## 1600 2 2 2 1 3
## 1601 4 5 5 1 5
## 1602 3 4 5 2 3
## 1603 3 2 2 2 3
## 1604 4 2 2 2 3
## 1605 5 2 2 4 5
## 1606 1 1 1 1 1
## 1607 3 2 2 2 2
## 1608 5 3 3 5 3
## 1609 4 3 4 2 5
## 1610 4 2 3 1 5
## 1611 5 3 4 3 2
## 1612 4 2 3 2 3
## 1613 4 4 5 2 3
## 1614 5 3 5 1 5
## 1615 4 3 2 3 3
## 1616 4 2 3 5 3
## 1617 5 2 3 2 5
## 1618 5 4 4 1 4
## 1619 5 3 3 1 5
## 1620 5 1 2 1 3
## 1621 4 3 4 1 4
## 1622 5 3 4 1 5
## 1623 5 5 3 3 5
## 1624 5 5 5 1 3
## 1625 4 5 2 3 5
## 1626 3 3 3 1 5
## 1627 4 2 3 2 3
## 1628 5 3 3 1 5
## 1629 5 1 2 1 3
## 1630 4 2 4 4 5
## 1631 4 3 3 2 4
## 1632 5 4 2 5 5
## 1633 4 2 2 1 4
## 1634 4 2 2 1 2
## 1635 4 1 3 1 4
## 1636 5 4 3 2 3
## 1637 5 3 4 1 5
## 1638 5 4 3 4 5
## 1639 5 2 3 1 2
## 1640 3 2 3 3 3
## 1641 5 3 3 2 5
## 1642 4 1 2 3 5
## 1643 4 4 5 5 4
## 1644 4 4 4 2 3
## 1645 3 2 3 1 3
## 1646 5 4 4 2 4
## 1647 5 5 5 1 5
## 1648 4 3 2 3 3
## 1649 4 3 3 2 3
## 1650 3 2 4 1 2
## 1651 5 2 3 1 4
## 1652 4 2 4 5 5
## 1653 5 1 3 2 5
## 1654 3 3 2 4 4
## 1655 5 5 4 3 5
## 1656 4 4 4 1 5
## 1657 4 2 3 1 4
## 1658 4 4 5 1 4
## 1659 5 4 4 1 3
## 1660 2 3 3 1 3
## 1661 4 2 4 1 3
## 1662 2 1 3 1 2
## 1663 5 1 4 1 5
## 1664 4 3 3 5 4
## 1665 5 3 4 4 4
## 1666 4 2 4 1 2
## 1667 3 2 2 2 3
## 1668 4 3 3 1 3
## 1669 3 3 2 4 2
## 1670 4 3 2 2 4
## 1671 4 3 3 4 4
## 1672 3 3 2 5 3
## 1673 2 2 2 1 4
## 1674 3 2 2 1 5
## 1675 3 2 3 1 4
## 1676 5 4 4 1 3
## 1677 4 5 3 4 5
## 1678 4 2 2 2 5
## 1679 5 2 4 1 5
## 1680 5 4 4 2 5
## 1681 3 2 1 1 3
## 1682 5 1 5 1 5
## 1683 4 2 2 1 3
## 1684 5 4 3 1 2
## 1685 4 2 3 2 4
## 1686 4 4 4 4 5
## 1687 5 5 5 1 4
## 1688 4 2 4 1 4
## 1689 5 5 5 1 5
## 1690 4 3 3 2 4
## 1691 5 2 2 1 5
## 1692 4 2 4 1 5
## 1693 4 2 3 2 4
## 1694 4 3 3 2 2
## 1695 5 3 3 4 5
## 1696 3 3 4 1 5
## 1697 5 4 4 1 5
## 1698 3 4 4 1 3
## 1699 5 5 5 5 5
## 1700 4 3 3 1 3
## 1701 5 3 3 5 4
## 1702 5 2 3 1 5
## 1703 2 2 3 1 4
## 1704 4 4 4 4 4
## 1705 5 2 4 1 3
## 1706 2 2 2 2 3
## 1707 4 4 4 4 4
## 1708 5 3 3 3 5
## 1709 4 2 3 3 3
## 1710 3 3 3 5 5
## 1711 3 3 3 3 4
## 1712 3 2 3 1 3
## 1713 5 4 2 4 5
## 1714 3 2 4 2 3
## 1715 5 2 3 1 3
## 1716 3 4 3 2 1
## 1717 2 1 2 3 5
## 1718 3 3 2 5 3
## 1719 3 2 3 1 4
## 1720 4 4 4 1 4
## 1721 3 3 3 1 4
## 1722 5 2 3 1 3
## 1723 4 2 3 3 5
## 1724 4 1 2 2 3
## 1725 4 3 3 1 2
## 1726 4 4 4 2 5
## 1727 5 1 4 2 5
## 1728 3 2 5 1 4
## 1729 4 3 2 1 3
## 1730 4 2 4 1 4
## 1731 4 3 4 1 5
## 1732 4 3 3 1 3
## 1733 4 3 3 2 4
## 1734 3 1 1 1 2
## 1735 3 3 3 2 4
## 1736 4 3 2 1 5
## 1737 4 1 4 1 5
## 1738 4 2 3 2 5
## 1739 4 2 3 3 5
## 1740 4 2 1 1 3
## 1741 4 4 4 3 4
## 1742 3 2 3 5 3
## 1743 5 2 3 5 4
## 1744 5 4 3 1 4
## 1745 4 4 4 1 3
## 1746 4 2 5 1 3
## 1747 5 3 4 1 4
## 1748 5 2 4 1 5
## 1749 4 3 4 2 5
## 1750 4 3 2 1 4
## 1751 1 4 3 1 4
## 1752 4 3 3 1 5
## 1753 5 4 3 1 4
## 1754 3 2 5 1 2
## 1755 3 2 3 1 3
## 1756 4 4 4 2 3
## 1757 4 4 3 4 4
## 1758 5 1 4 1 4
## 1759 3 4 3 2 3
## 1760 5 5 5 2 4
## 1761 4 3 3 1 2
## 1762 3 3 3 1 3
## 1763 4 1 4 4 3
## 1764 3 3 4 2 4
## 1765 5 3 3 2 4
## 1766 4 4 3 1 5
## 1767 4 3 4 2 4
## 1768 4 2 3 1 3
## 1769 5 3 4 3 5
## 1770 2 2 3 1 3
## 1771 4 4 4 1 3
## 1772 4 2 2 2 3
## 1773 4 3 3 2 4
## 1774 4 2 3 1 4
## 1775 5 3 4 2 5
## 1776 4 4 5 1 3
## 1777 2 3 5 1 5
## 1778 3 4 4 1 4
## 1779 3 4 2 1 3
## 1780 4 3 3 1 3
## 1781 4 2 3 3 3
## 1782 5 2 5 1 3
## 1783 5 3 3 1 5
## 1784 5 4 3 1 4
## 1785 4 2 4 2 3
## 1786 5 4 5 2 5
## 1787 4 3 3 1 3
## 1788 4 2 3 4 4
## 1789 5 5 5 1 5
## 1790 5 4 4 1 4
## 1791 4 2 2 3 3
## 1792 3 5 2 1 2
## 1793 3 3 3 1 2
## 1794 3 3 3 3 4
## 1795 3 3 3 1 2
## 1796 4 3 2 1 3
## 1797 5 4 3 1 3
## 1798 3 3 3 1 3
## 1799 5 3 2 1 3
## 1800 4 5 2 2 5
## 1801 5 4 4 1 4
## 1802 4 2 3 3 4
## 1803 5 1 3 1 4
## 1804 5 2 4 1 4
## 1805 4 3 4 1 3
## 1806 4 3 3 1 5
## 1807 3 2 2 3 4
## 1808 3 2 3 1 3
## 1809 5 3 2 2 3
## 1810 2 4 4 4 3
## 1811 4 3 2 2 4
## 1812 4 3 3 1 3
## 1813 5 4 3 3 4
## 1814 5 2 2 5 5
## 1815 4 4 3 4 4
## 1816 5 1 3 1 4
## 1817 5 1 2 1 5
## 1818 4 3 4 2 2
## 1819 5 4 4 1 4
## 1820 3 2 2 1 2
## 1821 5 4 4 1 4
## 1822 5 4 4 1 3
## 1823 5 3 3 2 2
## 1824 5 2 3 1 4
## 1825 3 1 5 1 4
## 1826 5 4 3 1 5
## 1827 4 4 5 1 5
## 1828 3 2 2 4 4
## 1829 4 3 5 1 5
## 1830 4 3 3 1 3
## 1831 4 4 4 2 3
## 1832 4 2 3 2 3
## 1833 4 4 3 4 3
## 1834 4 3 3 1 5
## 1835 5 3 4 1 5
## 1836 4 4 4 5 4
## 1837 2 1 2 5 3
## 1838 5 4 5 5 4
## 1839 5 2 4 1 5
## 1840 4 2 4 1 5
## 1841 4 3 2 1 2
## 1842 5 1 3 1 5
## 1843 4 2 2 3 5
## 1844 5 3 3 1 5
## 1845 4 2 3 3 5
## 1846 5 2 5 3 4
## 1847 5 3 4 2 3
## 1848 3 2 3 4 4
## 1849 2 1 4 4 2
## 1850 3 2 2 1 5
## 1851 4 2 3 1 3
## 1852 3 2 3 2 3
## 1853 4 2 3 1 3
## 1854 1 3 2 2 5
## 1855 4 4 3 2 3
## 1856 2 4 4 1 2
## 1857 4 3 3 1 2
## 1858 4 3 4 5 3
## 1859 4 2 4 1 5
## 1860 3 5 3 1 4
## 1861 5 4 3 1 2
## 1862 5 2 4 1 5
## 1863 3 1 4 1 3
## 1864 3 2 3 1 4
## 1865 3 2 2 2 3
## 1866 5 1 1 1 4
## 1867 5 3 4 1 3
## 1868 4 2 2 5 2
## 1869 5 3 5 1 5
## 1870 3 3 2 1 4
## 1871 5 5 5 3 4
## 1872 3 3 3 1 4
## 1873 5 2 5 5 4
## 1874 5 4 3 2 2
## 1875 2 2 3 1 4
## 1876 4 3 3 1 5
## 1877 3 5 2 1 3
## 1878 5 3 3 1 5
## 1879 3 3 3 2 3
## 1880 4 4 4 5 4
## 1881 3 2 4 4 4
## 1882 5 4 1 2 5
## 1883 4 2 2 1 4
## 1884 4 3 4 1 4
## 1885 3 2 2 1 3
## 1886 5 3 3 1 4
## 1887 4 3 2 1 3
## 1888 2 2 1 1 4
## 1889 4 1 2 1 4
## 1890 2 1 2 3 5
## 1891 3 3 4 1 1
## 1892 5 2 3 1 3
## 1893 3 2 3 1 5
## 1894 3 2 3 2 4
## 1895 4 4 3 2 3
## 1896 5 4 5 1 4
## 1897 4 2 3 1 4
## 1898 3 3 3 2 4
## 1899 5 1 4 1 5
## 1900 5 3 4 1 5
## 1901 4 3 3 1 4
## 1902 5 4 3 1 3
## 1903 5 2 4 1 5
## 1904 4 5 4 3 5
## 1905 2 3 2 1 1
## 1906 5 2 4 1 4
## 1907 4 2 2 1 2
## 1908 4 1 3 1 4
## 1909 4 3 3 1 4
## 1910 5 1 4 1 4
## 1911 5 3 3 1 5
## 1912 5 1 2 1 4
## 1913 3 3 4 4 3
## 1914 4 4 3 1 4
## 1915 5 2 3 5 4
## 1916 4 4 3 1 4
## 1917 3 3 3 2 4
## 1918 2 4 4 4 4
## 1919 2 5 5 1 4
## 1920 2 2 2 2 3
## 1921 3 2 3 1 3
## 1922 3 3 4 2 2
## 1923 3 2 2 1 4
## 1924 3 2 3 1 3
## 1925 3 3 2 2 3
## 1926 4 2 5 1 2
## 1927 5 1 4 2 5
## 1928 3 2 2 5 5
## 1929 4 3 2 1 5
## 1930 4 2 3 1 4
## 1931 3 2 3 1 4
## 1932 5 4 4 2 2
## 1933 5 2 2 2 4
## 1934 5 2 3 1 4
## 1935 4 2 5 1 4
## 1936 5 5 4 2 3
## 1937 5 2 4 2 5
## 1938 4 4 4 1 1
## feel_happy if_feel_happy alco alco_family_state gender
## 1 very happy happy No non_alco_nonalcofamily Male
## 2 very happy happy No non_alco_nonalcofamily Male
## 3 Fairly happy happy No non_alco_nonalcofamily Male
## 4 Not very happy unhappy No non_alco_nonalcofamily Male
## 5 Fairly happy happy No non_alco_nonalcofamily Male
## 6 Fairly happy happy No non_alco_nonalcofamily Male
## 7 Not at all happy unhappy No non_alco_nonalcofamily Male
## 8 Fairly happy happy No non_alco_nonalcofamily Male
## 9 Fairly happy happy No nonalco_alcofamily Female
## 10 Fairly happy happy No non_alco_nonalcofamily Female
## 11 Fairly happy happy No non_alco_nonalcofamily Male
## 12 Fairly happy happy No non_alco_nonalcofamily Male
## 13 Not very happy unhappy No non_alco_nonalcofamily Male
## 14 Fairly happy happy No non_alco_nonalcofamily Female
## 15 Not very happy unhappy No nonalco_alcofamily Female
## 16 Fairly happy happy No non_alco_nonalcofamily Male
## 17 Fairly happy happy No non_alco_nonalcofamily Male
## 18 Not very happy unhappy No nonalco_alcofamily Male
## 19 Not very happy unhappy No non_alco_nonalcofamily Male
## 20 Not very happy unhappy No non_alco_nonalcofamily Female
## 21 Fairly happy happy No non_alco_nonalcofamily Female
## 22 Fairly happy happy No nonalco_alcofamily Male
## 23 very happy happy No non_alco_nonalcofamily Female
## 24 Fairly happy happy No non_alco_nonalcofamily Female
## 25 Fairly happy happy No non_alco_nonalcofamily Male
## 26 Fairly happy happy No non_alco_nonalcofamily Female
## 27 very happy happy No non_alco_nonalcofamily Male
## 28 Fairly happy happy No non_alco_nonalcofamily Female
## 29 Fairly happy happy No non_alco_nonalcofamily Male
## 30 Fairly happy happy No non_alco_nonalcofamily Male
## 31 very happy happy No non_alco_nonalcofamily Male
## 32 Fairly happy happy No non_alco_nonalcofamily Male
## 33 Not very happy unhappy No non_alco_nonalcofamily Male
## 34 Fairly happy happy No non_alco_nonalcofamily Male
## 35 Not very happy unhappy No non_alco_nonalcofamily Male
## 36 Fairly happy happy No non_alco_nonalcofamily Male
## 37 Not at all happy unhappy No non_alco_nonalcofamily Male
## 38 Not very happy unhappy No non_alco_nonalcofamily Male
## 39 Fairly happy happy No non_alco_nonalcofamily Male
## 40 Fairly happy happy No non_alco_nonalcofamily Male
## 41 Fairly happy happy No non_alco_nonalcofamily Male
## 42 Not very happy unhappy No nonalco_alcofamily Male
## 43 Not very happy unhappy No non_alco_nonalcofamily Male
## 44 Fairly happy happy No nonalco_alcofamily Female
## 45 Not very happy unhappy No non_alco_nonalcofamily Female
## 46 Fairly happy happy No non_alco_nonalcofamily Female
## 47 very happy happy No non_alco_nonalcofamily Male
## 48 Fairly happy happy No non_alco_nonalcofamily Female
## 49 Fairly happy happy No non_alco_nonalcofamily Male
## 50 Fairly happy happy No non_alco_nonalcofamily Female
## 51 Fairly happy happy No non_alco_nonalcofamily Male
## 52 Fairly happy happy No non_alco_nonalcofamily Female
## 53 very happy happy No non_alco_nonalcofamily Female
## 54 Fairly happy happy No non_alco_nonalcofamily Male
## 55 Not very happy unhappy No non_alco_nonalcofamily Male
## 56 Fairly happy happy No non_alco_nonalcofamily Female
## 57 Fairly happy happy No non_alco_nonalcofamily Male
## 58 very happy happy No non_alco_nonalcofamily Female
## 59 Fairly happy happy No non_alco_nonalcofamily Female
## 60 very happy happy No non_alco_nonalcofamily Male
## 61 Fairly happy happy No non_alco_nonalcofamily Female
## 62 Not very happy unhappy No non_alco_nonalcofamily Female
## 63 very happy happy No non_alco_nonalcofamily Male
## 64 Not at all happy unhappy No non_alco_nonalcofamily Male
## 65 Fairly happy happy No non_alco_nonalcofamily Male
## 66 very happy happy No non_alco_nonalcofamily Male
## 67 Fairly happy happy No non_alco_nonalcofamily Female
## 68 Fairly happy happy No non_alco_nonalcofamily Female
## 69 Fairly happy happy No nonalco_alcofamily Female
## 70 Fairly happy happy No non_alco_nonalcofamily Female
## 71 Fairly happy happy No non_alco_nonalcofamily Male
## 72 Not very happy unhappy No non_alco_nonalcofamily Male
## 73 very happy happy No non_alco_nonalcofamily Female
## 74 Not very happy unhappy Yes alco_nonalcofamily Male
## 75 Not very happy unhappy No non_alco_nonalcofamily Female
## 76 Not very happy unhappy No non_alco_nonalcofamily Female
## 77 Fairly happy happy No non_alco_nonalcofamily Male
## 78 Fairly happy happy No non_alco_nonalcofamily Female
## 79 Not very happy unhappy No non_alco_nonalcofamily Female
## 80 Fairly happy happy No nonalco_alcofamily Male
## 81 Fairly happy happy No non_alco_nonalcofamily Female
## 82 Fairly happy happy No nonalco_alcofamily Male
## 83 Fairly happy happy No nonalco_alcofamily Female
## 84 Fairly happy happy No non_alco_nonalcofamily Female
## 85 Fairly happy happy No non_alco_nonalcofamily Male
## 86 Not very happy unhappy No non_alco_nonalcofamily Female
## 87 Not very happy unhappy No non_alco_nonalcofamily Female
## 88 Fairly happy happy No non_alco_nonalcofamily Female
## 89 Fairly happy happy No non_alco_nonalcofamily Female
## 90 Fairly happy happy No non_alco_nonalcofamily Female
## 91 Not very happy unhappy No non_alco_nonalcofamily Female
## 92 Fairly happy happy No non_alco_nonalcofamily Male
## 93 Fairly happy happy No non_alco_nonalcofamily Female
## 94 very happy happy No non_alco_nonalcofamily Male
## 95 Fairly happy happy No non_alco_nonalcofamily Female
## 96 Fairly happy happy No non_alco_nonalcofamily Male
## 97 Fairly happy happy No non_alco_nonalcofamily Male
## 98 Fairly happy happy No non_alco_nonalcofamily Male
## 99 Fairly happy happy Yes alco_alcofamily Male
## 100 Fairly happy happy No nonalco_alcofamily Female
## 101 Fairly happy happy No non_alco_nonalcofamily Female
## 102 Fairly happy happy No non_alco_nonalcofamily Male
## 103 Fairly happy happy No non_alco_nonalcofamily Male
## 104 Fairly happy happy No non_alco_nonalcofamily Male
## 105 Fairly happy happy No nonalco_alcofamily Female
## 106 Fairly happy happy No non_alco_nonalcofamily Female
## 107 very happy happy No non_alco_nonalcofamily Male
## 108 Fairly happy happy No non_alco_nonalcofamily Female
## 109 Fairly happy happy No non_alco_nonalcofamily Male
## 110 very happy happy No non_alco_nonalcofamily Male
## 111 Not very happy unhappy No non_alco_nonalcofamily Male
## 112 Not very happy unhappy No non_alco_nonalcofamily Female
## 113 very happy happy No non_alco_nonalcofamily Female
## 114 Fairly happy happy No non_alco_nonalcofamily Female
## 115 Fairly happy happy No non_alco_nonalcofamily Male
## 116 Fairly happy happy No non_alco_nonalcofamily Male
## 117 Not very happy unhappy No non_alco_nonalcofamily Male
## 118 Fairly happy happy No non_alco_nonalcofamily Female
## 119 very happy happy No non_alco_nonalcofamily Female
## 120 Fairly happy happy No non_alco_nonalcofamily Female
## 121 Fairly happy happy No nonalco_alcofamily Male
## 122 Fairly happy happy No non_alco_nonalcofamily Male
## 123 Not very happy unhappy No nonalco_alcofamily Male
## 124 Fairly happy happy No non_alco_nonalcofamily Female
## 125 Fairly happy happy No non_alco_nonalcofamily Female
## 126 Not very happy unhappy No non_alco_nonalcofamily Female
## 127 Fairly happy happy No nonalco_alcofamily Female
## 128 Fairly happy happy No non_alco_nonalcofamily Male
## 129 Fairly happy happy No non_alco_nonalcofamily Male
## 130 Not very happy unhappy No non_alco_nonalcofamily Male
## 131 Fairly happy happy No non_alco_nonalcofamily Male
## 132 Fairly happy happy No non_alco_nonalcofamily Female
## 133 Fairly happy happy No non_alco_nonalcofamily Male
## 134 very happy happy No non_alco_nonalcofamily Male
## 135 Fairly happy happy No non_alco_nonalcofamily Female
## 136 Fairly happy happy No non_alco_nonalcofamily Male
## 137 very happy happy No non_alco_nonalcofamily Male
## 138 Fairly happy happy No non_alco_nonalcofamily Female
## 139 very happy happy No non_alco_nonalcofamily Female
## 140 Fairly happy happy No non_alco_nonalcofamily Male
## 141 Not very happy unhappy No non_alco_nonalcofamily Male
## 142 Not very happy unhappy No non_alco_nonalcofamily Male
## 143 Fairly happy happy No non_alco_nonalcofamily Female
## 144 Fairly happy happy No non_alco_nonalcofamily Female
## 145 Fairly happy happy No non_alco_nonalcofamily Male
## 146 Not very happy unhappy No non_alco_nonalcofamily Male
## 147 Fairly happy happy No non_alco_nonalcofamily Male
## 148 Fairly happy happy No non_alco_nonalcofamily Male
## 149 Fairly happy happy No nonalco_alcofamily Female
## 150 Not at all happy unhappy No nonalco_alcofamily Male
## 151 Fairly happy happy No non_alco_nonalcofamily Female
## 152 Fairly happy happy No non_alco_nonalcofamily Male
## 153 Fairly happy happy No non_alco_nonalcofamily Male
## 154 Fairly happy happy No non_alco_nonalcofamily Female
## 155 Fairly happy happy No non_alco_nonalcofamily Male
## 156 Fairly happy happy No non_alco_nonalcofamily Male
## 157 Fairly happy happy No non_alco_nonalcofamily Female
## 158 Fairly happy happy No nonalco_alcofamily Female
## 159 very happy happy No non_alco_nonalcofamily Female
## 160 Fairly happy happy No non_alco_nonalcofamily Male
## 161 very happy happy No non_alco_nonalcofamily Male
## 162 Fairly happy happy No non_alco_nonalcofamily Female
## 163 Fairly happy happy No non_alco_nonalcofamily Male
## 164 Not very happy unhappy No non_alco_nonalcofamily Female
## 165 Not at all happy unhappy No non_alco_nonalcofamily Male
## 166 Fairly happy happy No non_alco_nonalcofamily Female
## 167 Not very happy unhappy No non_alco_nonalcofamily Female
## 168 Fairly happy happy No non_alco_nonalcofamily Female
## 169 Fairly happy happy No non_alco_nonalcofamily Male
## 170 Fairly happy happy No non_alco_nonalcofamily Male
## 171 very happy happy No non_alco_nonalcofamily Female
## 172 Fairly happy happy No nonalco_alcofamily Female
## 173 Fairly happy happy No non_alco_nonalcofamily Female
## 174 Fairly happy happy No non_alco_nonalcofamily Female
## 175 Fairly happy happy No non_alco_nonalcofamily Male
## 176 very happy happy No nonalco_alcofamily Female
## 177 Not very happy unhappy No nonalco_alcofamily Male
## 178 Fairly happy happy No non_alco_nonalcofamily Male
## 179 Fairly happy happy No non_alco_nonalcofamily Male
## 180 Fairly happy happy No non_alco_nonalcofamily Male
## 181 Fairly happy happy No non_alco_nonalcofamily Female
## 182 Fairly happy happy No non_alco_nonalcofamily Female
## 183 Fairly happy happy No non_alco_nonalcofamily Male
## 184 very happy happy No nonalco_alcofamily Male
## 185 very happy happy No nonalco_alcofamily Female
## 186 Fairly happy happy No non_alco_nonalcofamily Male
## 187 Fairly happy happy No non_alco_nonalcofamily Male
## 188 Fairly happy happy No non_alco_nonalcofamily Female
## 189 Fairly happy happy No non_alco_nonalcofamily Male
## 190 Fairly happy happy Yes alco_alcofamily Female
## 191 Fairly happy happy No non_alco_nonalcofamily Female
## 192 Not very happy unhappy No non_alco_nonalcofamily Male
## 193 very happy happy No non_alco_nonalcofamily Male
## 194 very happy happy No non_alco_nonalcofamily Male
## 195 Fairly happy happy No nonalco_alcofamily Female
## 196 very happy happy No non_alco_nonalcofamily Male
## 197 Not very happy unhappy No non_alco_nonalcofamily Female
## 198 Not very happy unhappy No non_alco_nonalcofamily Female
## 199 Fairly happy happy No non_alco_nonalcofamily Female
## 200 Fairly happy happy Yes alco_nonalcofamily Female
## 201 Fairly happy happy No non_alco_nonalcofamily Female
## 202 Fairly happy happy No nonalco_alcofamily Female
## 203 Fairly happy happy No non_alco_nonalcofamily Female
## 204 Fairly happy happy No nonalco_alcofamily Female
## 205 Fairly happy happy No non_alco_nonalcofamily Female
## 206 Fairly happy happy No non_alco_nonalcofamily Female
## 207 very happy happy No nonalco_alcofamily Female
## 208 Fairly happy happy No non_alco_nonalcofamily Male
## 209 Fairly happy happy No nonalco_alcofamily Female
## 210 Not very happy unhappy No non_alco_nonalcofamily Male
## 211 Fairly happy happy No non_alco_nonalcofamily Male
## 212 Fairly happy happy No nonalco_alcofamily Female
## 213 Fairly happy happy No non_alco_nonalcofamily Male
## 214 Not very happy unhappy No non_alco_nonalcofamily Male
## 215 Fairly happy happy No non_alco_nonalcofamily Female
## 216 Fairly happy happy No non_alco_nonalcofamily Male
## 217 Fairly happy happy No non_alco_nonalcofamily Female
## 218 Fairly happy happy No nonalco_alcofamily Female
## 219 Fairly happy happy No non_alco_nonalcofamily Male
## 220 very happy happy No non_alco_nonalcofamily Female
## 221 Fairly happy happy No non_alco_nonalcofamily Male
## 222 Not very happy unhappy No non_alco_nonalcofamily Male
## 223 Not very happy unhappy No non_alco_nonalcofamily Male
## 224 Fairly happy happy No nonalco_alcofamily Male
## 225 Fairly happy happy No non_alco_nonalcofamily Male
## 226 Fairly happy happy No non_alco_nonalcofamily Female
## 227 Not very happy unhappy No non_alco_nonalcofamily Male
## 228 very happy happy No non_alco_nonalcofamily Female
## 229 Fairly happy happy No non_alco_nonalcofamily Female
## 230 very happy happy No non_alco_nonalcofamily Female
## 231 Fairly happy happy No non_alco_nonalcofamily Female
## 232 Not very happy unhappy No non_alco_nonalcofamily Female
## 233 Not at all happy unhappy No non_alco_nonalcofamily Male
## 234 Fairly happy happy Yes alco_nonalcofamily Female
## 235 very happy happy No non_alco_nonalcofamily Male
## 236 Fairly happy happy No non_alco_nonalcofamily Male
## 237 very happy happy No non_alco_nonalcofamily Male
## 238 Fairly happy happy No non_alco_nonalcofamily Female
## 239 Not very happy unhappy No non_alco_nonalcofamily Male
## 240 Not very happy unhappy No non_alco_nonalcofamily Male
## 241 Fairly happy happy No non_alco_nonalcofamily Female
## 242 Not very happy unhappy No non_alco_nonalcofamily Male
## 243 very happy happy No non_alco_nonalcofamily Male
## 244 very happy happy No nonalco_alcofamily Male
## 245 Fairly happy happy No non_alco_nonalcofamily Male
## 246 Fairly happy happy Yes alco_nonalcofamily Male
## 247 Not at all happy unhappy No non_alco_nonalcofamily Male
## 248 Fairly happy happy No non_alco_nonalcofamily Male
## 249 Not very happy unhappy No non_alco_nonalcofamily Female
## 250 very happy happy No non_alco_nonalcofamily Female
## 251 Fairly happy happy No non_alco_nonalcofamily Female
## 252 Not very happy unhappy No non_alco_nonalcofamily Female
## 253 very happy happy No nonalco_alcofamily Female
## 254 Not very happy unhappy No non_alco_nonalcofamily Female
## 255 Fairly happy happy No non_alco_nonalcofamily Male
## 256 Fairly happy happy No non_alco_nonalcofamily Male
## 257 Fairly happy happy No non_alco_nonalcofamily Male
## 258 Fairly happy happy No non_alco_nonalcofamily Female
## 259 Fairly happy happy No non_alco_nonalcofamily Female
## 260 Fairly happy happy No non_alco_nonalcofamily Female
## 261 very happy happy No non_alco_nonalcofamily Male
## 262 Fairly happy happy No non_alco_nonalcofamily Male
## 263 Fairly happy happy No non_alco_nonalcofamily Female
## 264 Fairly happy happy No non_alco_nonalcofamily Male
## 265 very happy happy No non_alco_nonalcofamily Female
## 266 very happy happy No non_alco_nonalcofamily Female
## 267 very happy happy No non_alco_nonalcofamily Female
## 268 Fairly happy happy No non_alco_nonalcofamily Male
## 269 Fairly happy happy No non_alco_nonalcofamily Male
## 270 Fairly happy happy No non_alco_nonalcofamily Male
## 271 Fairly happy happy No non_alco_nonalcofamily Male
## 272 Fairly happy happy No non_alco_nonalcofamily Female
## 273 Fairly happy happy No non_alco_nonalcofamily Female
## 274 Fairly happy happy No non_alco_nonalcofamily Female
## 275 Fairly happy happy No non_alco_nonalcofamily Male
## 276 very happy happy No nonalco_alcofamily Female
## 277 Fairly happy happy No non_alco_nonalcofamily Male
## 278 Fairly happy happy No non_alco_nonalcofamily Female
## 279 Fairly happy happy No nonalco_alcofamily Male
## 280 Fairly happy happy No non_alco_nonalcofamily Male
## 281 Fairly happy happy No non_alco_nonalcofamily Male
## 282 Not very happy unhappy No non_alco_nonalcofamily Female
## 283 Fairly happy happy No non_alco_nonalcofamily Male
## 284 Fairly happy happy No non_alco_nonalcofamily Male
## 285 Fairly happy happy No non_alco_nonalcofamily Female
## 286 Fairly happy happy No non_alco_nonalcofamily Female
## 287 Fairly happy happy No non_alco_nonalcofamily Male
## 288 Fairly happy happy No non_alco_nonalcofamily Female
## 289 Fairly happy happy No non_alco_nonalcofamily Female
## 290 Fairly happy happy No non_alco_nonalcofamily Female
## 291 very happy happy No nonalco_alcofamily Female
## 292 Fairly happy happy No non_alco_nonalcofamily Female
## 293 Fairly happy happy No non_alco_nonalcofamily Male
## 294 Not very happy unhappy No nonalco_alcofamily Male
## 295 Fairly happy happy No non_alco_nonalcofamily Female
## 296 Fairly happy happy No non_alco_nonalcofamily Male
## 297 Fairly happy happy No non_alco_nonalcofamily Male
## 298 Fairly happy happy No non_alco_nonalcofamily Female
## 299 Fairly happy happy No non_alco_nonalcofamily Female
## 300 Fairly happy happy No non_alco_nonalcofamily Female
## 301 Not very happy unhappy No non_alco_nonalcofamily Female
## 302 Fairly happy happy No non_alco_nonalcofamily Female
## 303 Fairly happy happy No non_alco_nonalcofamily Female
## 304 Fairly happy happy No non_alco_nonalcofamily Male
## 305 Not very happy unhappy No non_alco_nonalcofamily Male
## 306 Fairly happy happy No non_alco_nonalcofamily Male
## 307 Fairly happy happy No non_alco_nonalcofamily Female
## 308 Not very happy unhappy Yes alco_nonalcofamily Female
## 309 Fairly happy happy No non_alco_nonalcofamily Male
## 310 Fairly happy happy No non_alco_nonalcofamily Male
## 311 Fairly happy happy No non_alco_nonalcofamily Male
## 312 Fairly happy happy No non_alco_nonalcofamily Male
## 313 Fairly happy happy No non_alco_nonalcofamily Male
## 314 Fairly happy happy No non_alco_nonalcofamily Female
## 315 very happy happy No non_alco_nonalcofamily Female
## 316 Fairly happy happy No non_alco_nonalcofamily Male
## 317 Fairly happy happy No non_alco_nonalcofamily Male
## 318 Fairly happy happy No nonalco_alcofamily Female
## 319 Fairly happy happy No non_alco_nonalcofamily Female
## 320 Fairly happy happy No non_alco_nonalcofamily Male
## 321 Fairly happy happy No non_alco_nonalcofamily Male
## 322 Fairly happy happy No non_alco_nonalcofamily Male
## 323 Fairly happy happy No nonalco_alcofamily Male
## 324 Fairly happy happy No non_alco_nonalcofamily Female
## 325 Fairly happy happy No non_alco_nonalcofamily Male
## 326 Fairly happy happy No non_alco_nonalcofamily Male
## 327 Fairly happy happy No non_alco_nonalcofamily Male
## 328 Fairly happy happy No non_alco_nonalcofamily Male
## 329 Not at all happy unhappy No non_alco_nonalcofamily Female
## 330 Fairly happy happy No non_alco_nonalcofamily Female
## 331 Not very happy unhappy Yes alco_nonalcofamily Male
## 332 Not very happy unhappy No nonalco_alcofamily Female
## 333 Fairly happy happy No non_alco_nonalcofamily Male
## 334 very happy happy No non_alco_nonalcofamily Male
## 335 Not very happy unhappy No non_alco_nonalcofamily Female
## 336 Not at all happy unhappy No non_alco_nonalcofamily Other
## 337 Fairly happy happy No non_alco_nonalcofamily Male
## 338 Fairly happy happy No non_alco_nonalcofamily Male
## 339 Fairly happy happy No non_alco_nonalcofamily Male
## 340 very happy happy No non_alco_nonalcofamily Female
## 341 very happy happy No non_alco_nonalcofamily Female
## 342 Fairly happy happy No non_alco_nonalcofamily Female
## 343 very happy happy No non_alco_nonalcofamily Female
## 344 Fairly happy happy No non_alco_nonalcofamily Male
## 345 Not very happy unhappy No non_alco_nonalcofamily Male
## 346 Not at all happy unhappy No non_alco_nonalcofamily Female
## 347 Fairly happy happy No non_alco_nonalcofamily Female
## 348 Not very happy unhappy Yes alco_nonalcofamily Male
## 349 Fairly happy happy No non_alco_nonalcofamily Female
## 350 very happy happy No non_alco_nonalcofamily Male
## 351 very happy happy No non_alco_nonalcofamily Male
## 352 very happy happy No non_alco_nonalcofamily Female
## 353 Fairly happy happy No non_alco_nonalcofamily Female
## 354 very happy happy No non_alco_nonalcofamily Female
## 355 Not very happy unhappy No non_alco_nonalcofamily Male
## 356 Fairly happy happy No non_alco_nonalcofamily Male
## 357 Fairly happy happy No non_alco_nonalcofamily Male
## 358 Fairly happy happy No non_alco_nonalcofamily Female
## 359 Fairly happy happy No non_alco_nonalcofamily Female
## 360 Fairly happy happy No non_alco_nonalcofamily Male
## 361 Fairly happy happy No non_alco_nonalcofamily Female
## 362 very happy happy No non_alco_nonalcofamily Female
## 363 Fairly happy happy No non_alco_nonalcofamily Male
## 364 very happy happy No non_alco_nonalcofamily Male
## 365 Fairly happy happy No non_alco_nonalcofamily Male
## 366 Fairly happy happy No non_alco_nonalcofamily Female
## 367 Fairly happy happy No non_alco_nonalcofamily Male
## 368 very happy happy No non_alco_nonalcofamily Male
## 369 very happy happy No non_alco_nonalcofamily Male
## 370 Fairly happy happy No nonalco_alcofamily Male
## 371 Not very happy unhappy No non_alco_nonalcofamily Female
## 372 Fairly happy happy No non_alco_nonalcofamily Male
## 373 Fairly happy happy No nonalco_alcofamily Female
## 374 Fairly happy happy No non_alco_nonalcofamily Female
## 375 Fairly happy happy No non_alco_nonalcofamily Female
## 376 Fairly happy happy No non_alco_nonalcofamily Male
## 377 Fairly happy happy No nonalco_alcofamily Female
## 378 Fairly happy happy No non_alco_nonalcofamily Female
## 379 Fairly happy happy No non_alco_nonalcofamily Male
## 380 Fairly happy happy No non_alco_nonalcofamily Male
## 381 Not at all happy unhappy Yes alco_nonalcofamily Male
## 382 Not very happy unhappy No nonalco_alcofamily Male
## 383 Fairly happy happy No non_alco_nonalcofamily Male
## 384 Fairly happy happy No non_alco_nonalcofamily Male
## 385 Fairly happy happy No non_alco_nonalcofamily Female
## 386 Fairly happy happy No non_alco_nonalcofamily Female
## 387 Fairly happy happy No non_alco_nonalcofamily Female
## 388 Fairly happy happy No nonalco_alcofamily Female
## 389 Fairly happy happy No non_alco_nonalcofamily Female
## 390 Not very happy unhappy No non_alco_nonalcofamily Female
## 391 Fairly happy happy No non_alco_nonalcofamily Female
## 392 Fairly happy happy No non_alco_nonalcofamily Male
## 393 Fairly happy happy No non_alco_nonalcofamily Male
## 394 Fairly happy happy No non_alco_nonalcofamily Male
## 395 Fairly happy happy No non_alco_nonalcofamily Male
## 396 Not very happy unhappy No non_alco_nonalcofamily Female
## 397 Not very happy unhappy No non_alco_nonalcofamily Female
## 398 Fairly happy happy No nonalco_alcofamily Male
## 399 Fairly happy happy No non_alco_nonalcofamily Male
## 400 Fairly happy happy No non_alco_nonalcofamily Male
## 401 Fairly happy happy No nonalco_alcofamily Male
## 402 Fairly happy happy No non_alco_nonalcofamily Male
## 403 Not very happy unhappy No non_alco_nonalcofamily Male
## 404 Fairly happy happy No non_alco_nonalcofamily Male
## 405 Not very happy unhappy No non_alco_nonalcofamily Female
## 406 Not very happy unhappy No non_alco_nonalcofamily Female
## 407 Fairly happy happy No non_alco_nonalcofamily Male
## 408 Fairly happy happy No non_alco_nonalcofamily Female
## 409 Fairly happy happy No non_alco_nonalcofamily Male
## 410 Not very happy unhappy No non_alco_nonalcofamily Male
## 411 Fairly happy happy No non_alco_nonalcofamily Male
## 412 Not at all happy unhappy No non_alco_nonalcofamily Male
## 413 very happy happy No non_alco_nonalcofamily Female
## 414 Fairly happy happy No non_alco_nonalcofamily Male
## 415 Fairly happy happy No non_alco_nonalcofamily Male
## 416 Fairly happy happy No nonalco_alcofamily Female
## 417 very happy happy Yes alco_nonalcofamily Female
## 418 Fairly happy happy No non_alco_nonalcofamily Female
## 419 Fairly happy happy No non_alco_nonalcofamily Female
## 420 Fairly happy happy No non_alco_nonalcofamily Female
## 421 very happy happy No non_alco_nonalcofamily Male
## 422 Fairly happy happy No non_alco_nonalcofamily Male
## 423 Fairly happy happy No non_alco_nonalcofamily Male
## 424 Fairly happy happy No non_alco_nonalcofamily Female
## 425 Fairly happy happy No non_alco_nonalcofamily Female
## 426 Fairly happy happy No non_alco_nonalcofamily Female
## 427 Fairly happy happy No non_alco_nonalcofamily Female
## 428 Not very happy unhappy No non_alco_nonalcofamily Male
## 429 Fairly happy happy No non_alco_nonalcofamily Female
## 430 Fairly happy happy No non_alco_nonalcofamily Female
## 431 very happy happy No non_alco_nonalcofamily Female
## 432 Not very happy unhappy No non_alco_nonalcofamily Male
## 433 Fairly happy happy No non_alco_nonalcofamily Male
## 434 Fairly happy happy No non_alco_nonalcofamily Male
## 435 Fairly happy happy No non_alco_nonalcofamily Female
## 436 Fairly happy happy No non_alco_nonalcofamily Male
## 437 Fairly happy happy No non_alco_nonalcofamily Male
## 438 very happy happy No non_alco_nonalcofamily Male
## 439 Fairly happy happy No non_alco_nonalcofamily Female
## 440 Not very happy unhappy No non_alco_nonalcofamily Female
## 441 Fairly happy happy No nonalco_alcofamily Female
## 442 Fairly happy happy No nonalco_alcofamily Female
## 443 very happy happy No non_alco_nonalcofamily Male
## 444 Fairly happy happy No non_alco_nonalcofamily Male
## 445 Fairly happy happy No non_alco_nonalcofamily Male
## 446 Fairly happy happy No non_alco_nonalcofamily Male
## 447 Fairly happy happy No non_alco_nonalcofamily Male
## 448 Not very happy unhappy No non_alco_nonalcofamily Female
## 449 Fairly happy happy No non_alco_nonalcofamily Male
## 450 Fairly happy happy No non_alco_nonalcofamily Male
## 451 Not very happy unhappy No nonalco_alcofamily Female
## 452 Fairly happy happy No non_alco_nonalcofamily Male
## 453 Fairly happy happy No non_alco_nonalcofamily Male
## 454 Fairly happy happy No non_alco_nonalcofamily Female
## 455 Fairly happy happy No nonalco_alcofamily Female
## 456 Fairly happy happy No non_alco_nonalcofamily Female
## 457 Fairly happy happy No nonalco_alcofamily Other
## 458 Not very happy unhappy No non_alco_nonalcofamily Male
## 459 Fairly happy happy No non_alco_nonalcofamily Male
## 460 Fairly happy happy No non_alco_nonalcofamily Male
## 461 Fairly happy happy No non_alco_nonalcofamily Male
## 462 Fairly happy happy No nonalco_alcofamily Female
## 463 very happy happy No non_alco_nonalcofamily Male
## 464 very happy happy No non_alco_nonalcofamily Male
## 465 Fairly happy happy No non_alco_nonalcofamily Female
## 466 Fairly happy happy No nonalco_alcofamily Male
## 467 Fairly happy happy No non_alco_nonalcofamily Female
## 468 Not very happy unhappy No nonalco_alcofamily Female
## 469 very happy happy Yes alco_alcofamily Female
## 470 Fairly happy happy No non_alco_nonalcofamily Male
## 471 Fairly happy happy No non_alco_nonalcofamily Male
## 472 very happy happy No nonalco_alcofamily Male
## 473 Fairly happy happy No non_alco_nonalcofamily Male
## 474 Fairly happy happy No non_alco_nonalcofamily Female
## 475 Not very happy unhappy No non_alco_nonalcofamily Female
## 476 Fairly happy happy No non_alco_nonalcofamily Female
## 477 Fairly happy happy No non_alco_nonalcofamily Female
## 478 Fairly happy happy No non_alco_nonalcofamily Male
## 479 Not at all happy unhappy No non_alco_nonalcofamily Male
## 480 Fairly happy happy No non_alco_nonalcofamily Male
## 481 Fairly happy happy Yes alco_alcofamily Female
## 482 very happy happy No non_alco_nonalcofamily Female
## 483 Fairly happy happy No non_alco_nonalcofamily Male
## 484 very happy happy No non_alco_nonalcofamily Male
## 485 Fairly happy happy No non_alco_nonalcofamily Male
## 486 Fairly happy happy No non_alco_nonalcofamily Female
## 487 Fairly happy happy No non_alco_nonalcofamily Male
## 488 Fairly happy happy No nonalco_alcofamily Female
## 489 Fairly happy happy No non_alco_nonalcofamily Male
## 490 Fairly happy happy No non_alco_nonalcofamily Male
## 491 Fairly happy happy No non_alco_nonalcofamily Male
## 492 very happy happy No non_alco_nonalcofamily Female
## 493 Not very happy unhappy No non_alco_nonalcofamily Male
## 494 Fairly happy happy No non_alco_nonalcofamily Female
## 495 Fairly happy happy No non_alco_nonalcofamily Female
## 496 Fairly happy happy No non_alco_nonalcofamily Male
## 497 Not very happy unhappy No non_alco_nonalcofamily Male
## 498 Fairly happy happy No non_alco_nonalcofamily Male
## 499 Fairly happy happy No non_alco_nonalcofamily Female
## 500 very happy happy No non_alco_nonalcofamily Female
## 501 very happy happy No non_alco_nonalcofamily Female
## 502 Not at all happy unhappy No non_alco_nonalcofamily Male
## 503 very happy happy No non_alco_nonalcofamily Female
## 504 Fairly happy happy No non_alco_nonalcofamily Female
## 505 Fairly happy happy No non_alco_nonalcofamily Female
## 506 Fairly happy happy No non_alco_nonalcofamily Female
## 507 Fairly happy happy No non_alco_nonalcofamily Female
## 508 Fairly happy happy No non_alco_nonalcofamily Female
## 509 Fairly happy happy No non_alco_nonalcofamily Male
## 510 very happy happy No non_alco_nonalcofamily Female
## 511 Fairly happy happy No non_alco_nonalcofamily Female
## 512 very happy happy No non_alco_nonalcofamily Male
## 513 Not very happy unhappy No non_alco_nonalcofamily Male
## 514 Fairly happy happy No non_alco_nonalcofamily Female
## 515 Fairly happy happy No non_alco_nonalcofamily Female
## 516 very happy happy No non_alco_nonalcofamily Male
## 517 Fairly happy happy No non_alco_nonalcofamily Male
## 518 Fairly happy happy No nonalco_alcofamily Female
## 519 very happy happy No non_alco_nonalcofamily Female
## 520 Fairly happy happy No nonalco_alcofamily Male
## 521 Fairly happy happy No nonalco_alcofamily Female
## 522 Fairly happy happy No non_alco_nonalcofamily Male
## 523 Fairly happy happy No nonalco_alcofamily Female
## 524 very happy happy No non_alco_nonalcofamily Female
## 525 Fairly happy happy No non_alco_nonalcofamily Male
## 526 Fairly happy happy Yes alco_nonalcofamily Male
## 527 Fairly happy happy No non_alco_nonalcofamily Male
## 528 Fairly happy happy No non_alco_nonalcofamily Male
## 529 Fairly happy happy No nonalco_alcofamily Male
## 530 Not very happy unhappy No non_alco_nonalcofamily Male
## 531 very happy happy No non_alco_nonalcofamily Female
## 532 Fairly happy happy No non_alco_nonalcofamily Male
## 533 Not very happy unhappy No non_alco_nonalcofamily Male
## 534 Fairly happy happy No non_alco_nonalcofamily Female
## 535 Fairly happy happy No non_alco_nonalcofamily Female
## 536 Fairly happy happy No non_alco_nonalcofamily Female
## 537 Fairly happy happy No non_alco_nonalcofamily Male
## 538 Fairly happy happy No non_alco_nonalcofamily Female
## 539 Fairly happy happy No non_alco_nonalcofamily Female
## 540 Fairly happy happy No non_alco_nonalcofamily Female
## 541 Fairly happy happy No nonalco_alcofamily Female
## 542 Fairly happy happy No non_alco_nonalcofamily Female
## 543 Fairly happy happy No non_alco_nonalcofamily Female
## 544 Fairly happy happy No non_alco_nonalcofamily Male
## 545 Fairly happy happy No non_alco_nonalcofamily Female
## 546 very happy happy No nonalco_alcofamily Female
## 547 Fairly happy happy No non_alco_nonalcofamily Male
## 548 Fairly happy happy No non_alco_nonalcofamily Female
## 549 Fairly happy happy No non_alco_nonalcofamily Male
## 550 Fairly happy happy No non_alco_nonalcofamily Male
## 551 Fairly happy happy Yes alco_nonalcofamily Male
## 552 Fairly happy happy No non_alco_nonalcofamily Male
## 553 Fairly happy happy No non_alco_nonalcofamily Male
## 554 Not very happy unhappy No non_alco_nonalcofamily Male
## 555 Fairly happy happy No non_alco_nonalcofamily Female
## 556 Fairly happy happy No non_alco_nonalcofamily Female
## 557 very happy happy No non_alco_nonalcofamily Male
## 558 very happy happy No non_alco_nonalcofamily Female
## 559 Fairly happy happy No non_alco_nonalcofamily Male
## 560 Fairly happy happy No non_alco_nonalcofamily Male
## 561 Fairly happy happy No non_alco_nonalcofamily Male
## 562 Fairly happy happy No non_alco_nonalcofamily Female
## 563 Fairly happy happy No nonalco_alcofamily Female
## 564 Fairly happy happy No nonalco_alcofamily Female
## 565 Fairly happy happy No non_alco_nonalcofamily Male
## 566 Fairly happy happy No non_alco_nonalcofamily Male
## 567 Not very happy unhappy No non_alco_nonalcofamily Female
## 568 Fairly happy happy No non_alco_nonalcofamily Female
## 569 Not very happy unhappy No non_alco_nonalcofamily Female
## 570 very happy happy No nonalco_alcofamily Female
## 571 very happy happy No non_alco_nonalcofamily Male
## 572 Fairly happy happy No non_alco_nonalcofamily Male
## 573 Fairly happy happy No non_alco_nonalcofamily Male
## 574 very happy happy No non_alco_nonalcofamily Female
## 575 Fairly happy happy No non_alco_nonalcofamily Male
## 576 Fairly happy happy No non_alco_nonalcofamily Male
## 577 Not very happy unhappy No nonalco_alcofamily Female
## 578 very happy happy No non_alco_nonalcofamily Female
## 579 Fairly happy happy No non_alco_nonalcofamily Male
## 580 Not very happy unhappy No non_alco_nonalcofamily Male
## 581 very happy happy No non_alco_nonalcofamily Male
## 582 Fairly happy happy No non_alco_nonalcofamily Female
## 583 Fairly happy happy No non_alco_nonalcofamily Male
## 584 Fairly happy happy No non_alco_nonalcofamily Female
## 585 Fairly happy happy No non_alco_nonalcofamily Female
## 586 Fairly happy happy No non_alco_nonalcofamily Female
## 587 very happy happy No nonalco_alcofamily Female
## 588 Fairly happy happy No non_alco_nonalcofamily Male
## 589 Not very happy unhappy No non_alco_nonalcofamily Male
## 590 Fairly happy happy No non_alco_nonalcofamily Male
## 591 Not very happy unhappy No non_alco_nonalcofamily Male
## 592 Fairly happy happy No non_alco_nonalcofamily Female
## 593 Not very happy unhappy No non_alco_nonalcofamily Female
## 594 very happy happy No non_alco_nonalcofamily Female
## 595 very happy happy No nonalco_alcofamily Female
## 596 very happy happy No non_alco_nonalcofamily Male
## 597 Fairly happy happy No non_alco_nonalcofamily Female
## 598 Not very happy unhappy No non_alco_nonalcofamily Female
## 599 Fairly happy happy No nonalco_alcofamily Female
## 600 Fairly happy happy No non_alco_nonalcofamily Female
## 601 Fairly happy happy No non_alco_nonalcofamily Male
## 602 Not very happy unhappy No non_alco_nonalcofamily Male
## 603 Fairly happy happy No non_alco_nonalcofamily Female
## 604 Fairly happy happy Yes alco_nonalcofamily Male
## 605 Fairly happy happy No nonalco_alcofamily Female
## 606 Not at all happy unhappy No nonalco_alcofamily Female
## 607 Fairly happy happy No non_alco_nonalcofamily Female
## 608 Fairly happy happy No non_alco_nonalcofamily Female
## 609 Fairly happy happy No non_alco_nonalcofamily Male
## 610 Fairly happy happy No non_alco_nonalcofamily Male
## 611 very happy happy No non_alco_nonalcofamily Female
## 612 Not very happy unhappy No non_alco_nonalcofamily Female
## 613 Fairly happy happy No non_alco_nonalcofamily Male
## 614 Fairly happy happy No nonalco_alcofamily Male
## 615 very happy happy No non_alco_nonalcofamily Male
## 616 Not very happy unhappy No non_alco_nonalcofamily Female
## 617 Not very happy unhappy Yes alco_alcofamily Female
## 618 very happy happy No non_alco_nonalcofamily Male
## 619 Fairly happy happy No non_alco_nonalcofamily Female
## 620 Not very happy unhappy No non_alco_nonalcofamily Male
## 621 Fairly happy happy No non_alco_nonalcofamily Female
## 622 Fairly happy happy No non_alco_nonalcofamily Female
## 623 Fairly happy happy No non_alco_nonalcofamily Male
## 624 Fairly happy happy No non_alco_nonalcofamily Female
## 625 Fairly happy happy No non_alco_nonalcofamily Male
## 626 Fairly happy happy No nonalco_alcofamily Male
## 627 Not very happy unhappy No non_alco_nonalcofamily Female
## 628 Fairly happy happy No non_alco_nonalcofamily Male
## 629 Not very happy unhappy No non_alco_nonalcofamily Female
## 630 Not very happy unhappy No non_alco_nonalcofamily Male
## 631 Fairly happy happy No non_alco_nonalcofamily Female
## 632 Not at all happy unhappy No nonalco_alcofamily Female
## 633 Fairly happy happy No non_alco_nonalcofamily Male
## 634 Not very happy unhappy No non_alco_nonalcofamily Female
## 635 Not very happy unhappy No nonalco_alcofamily Female
## 636 Fairly happy happy No non_alco_nonalcofamily Female
## 637 Fairly happy happy No nonalco_alcofamily Female
## 638 Fairly happy happy No non_alco_nonalcofamily Male
## 639 Fairly happy happy No non_alco_nonalcofamily Male
## 640 Not very happy unhappy No non_alco_nonalcofamily Male
## 641 Fairly happy happy No non_alco_nonalcofamily Male
## 642 Fairly happy happy No non_alco_nonalcofamily Male
## 643 Not very happy unhappy No non_alco_nonalcofamily Female
## 644 Fairly happy happy No non_alco_nonalcofamily Male
## 645 Not very happy unhappy No non_alco_nonalcofamily Female
## 646 Not very happy unhappy No non_alco_nonalcofamily Female
## 647 Fairly happy happy No non_alco_nonalcofamily Female
## 648 Fairly happy happy No non_alco_nonalcofamily Female
## 649 Fairly happy happy No non_alco_nonalcofamily Female
## 650 Fairly happy happy No non_alco_nonalcofamily Male
## 651 Fairly happy happy No non_alco_nonalcofamily Male
## 652 Fairly happy happy No non_alco_nonalcofamily Male
## 653 very happy happy No non_alco_nonalcofamily Male
## 654 Fairly happy happy No non_alco_nonalcofamily Female
## 655 Fairly happy happy No non_alco_nonalcofamily Male
## 656 Fairly happy happy No non_alco_nonalcofamily Male
## 657 Fairly happy happy No nonalco_alcofamily Male
## 658 Fairly happy happy No non_alco_nonalcofamily Male
## 659 Not very happy unhappy No non_alco_nonalcofamily Female
## 660 Fairly happy happy No non_alco_nonalcofamily Male
## 661 Fairly happy happy No non_alco_nonalcofamily Female
## 662 Fairly happy happy No non_alco_nonalcofamily Male
## 663 Not very happy unhappy No non_alco_nonalcofamily Male
## 664 Fairly happy happy Yes alco_alcofamily Male
## 665 Not at all happy unhappy No nonalco_alcofamily Female
## 666 Fairly happy happy No non_alco_nonalcofamily Male
## 667 Not very happy unhappy No nonalco_alcofamily Male
## 668 Fairly happy happy No non_alco_nonalcofamily Female
## 669 Fairly happy happy No nonalco_alcofamily Female
## 670 Fairly happy happy No non_alco_nonalcofamily Female
## 671 very happy happy No non_alco_nonalcofamily Female
## 672 very happy happy No non_alco_nonalcofamily Male
## 673 Fairly happy happy No non_alco_nonalcofamily Male
## 674 Fairly happy happy No non_alco_nonalcofamily Male
## 675 Fairly happy happy No non_alco_nonalcofamily Male
## 676 Fairly happy happy No non_alco_nonalcofamily Female
## 677 Fairly happy happy No nonalco_alcofamily Male
## 678 very happy happy No non_alco_nonalcofamily Male
## 679 Fairly happy happy No non_alco_nonalcofamily Male
## 680 Fairly happy happy No nonalco_alcofamily Male
## 681 Not very happy unhappy No non_alco_nonalcofamily Male
## 682 Fairly happy happy No non_alco_nonalcofamily Male
## 683 Fairly happy happy No non_alco_nonalcofamily Male
## 684 very happy happy No non_alco_nonalcofamily Male
## 685 Not very happy unhappy No non_alco_nonalcofamily Female
## 686 Not very happy unhappy No non_alco_nonalcofamily Male
## 687 very happy happy No non_alco_nonalcofamily Female
## 688 Fairly happy happy No non_alco_nonalcofamily Male
## 689 Fairly happy happy No non_alco_nonalcofamily Female
## 690 very happy happy No non_alco_nonalcofamily Male
## 691 Not very happy unhappy No non_alco_nonalcofamily Female
## 692 Fairly happy happy No non_alco_nonalcofamily Female
## 693 Fairly happy happy No nonalco_alcofamily Female
## 694 Fairly happy happy No non_alco_nonalcofamily Female
## 695 Fairly happy happy No non_alco_nonalcofamily Male
## 696 Fairly happy happy No non_alco_nonalcofamily Male
## 697 Fairly happy happy No nonalco_alcofamily Male
## 698 Not very happy unhappy No non_alco_nonalcofamily Male
## 699 Fairly happy happy No nonalco_alcofamily Male
## 700 Fairly happy happy No non_alco_nonalcofamily Male
## 701 Not very happy unhappy No non_alco_nonalcofamily Female
## 702 Fairly happy happy No non_alco_nonalcofamily Male
## 703 very happy happy No non_alco_nonalcofamily Female
## 704 Fairly happy happy No nonalco_alcofamily Female
## 705 Fairly happy happy No nonalco_alcofamily Male
## 706 very happy happy No non_alco_nonalcofamily Male
## 707 Fairly happy happy No non_alco_nonalcofamily Male
## 708 Fairly happy happy No non_alco_nonalcofamily Female
## 709 Fairly happy happy No non_alco_nonalcofamily Male
## 710 Not very happy unhappy No non_alco_nonalcofamily Male
## 711 Fairly happy happy No nonalco_alcofamily Female
## 712 Fairly happy happy No nonalco_alcofamily Female
## 713 Fairly happy happy No non_alco_nonalcofamily Female
## 714 Fairly happy happy No non_alco_nonalcofamily Male
## 715 Not very happy unhappy No non_alco_nonalcofamily Female
## 716 Fairly happy happy No non_alco_nonalcofamily Male
## 717 Fairly happy happy No non_alco_nonalcofamily Male
## 718 Fairly happy happy No non_alco_nonalcofamily Male
## 719 Not very happy unhappy No non_alco_nonalcofamily Female
## 720 Not very happy unhappy No non_alco_nonalcofamily Male
## 721 Not at all happy unhappy No non_alco_nonalcofamily Male
## 722 very happy happy No non_alco_nonalcofamily Female
## 723 Not at all happy unhappy No nonalco_alcofamily Male
## 724 very happy happy No non_alco_nonalcofamily Male
## 725 Fairly happy happy No nonalco_alcofamily Male
## 726 Fairly happy happy No non_alco_nonalcofamily Male
## 727 Fairly happy happy No nonalco_alcofamily Female
## 728 Not at all happy unhappy Yes alco_alcofamily Female
## 729 Fairly happy happy No non_alco_nonalcofamily Female
## 730 Fairly happy happy No non_alco_nonalcofamily Female
## 731 Fairly happy happy No non_alco_nonalcofamily Female
## 732 Fairly happy happy No non_alco_nonalcofamily Female
## 733 Fairly happy happy No non_alco_nonalcofamily Female
## 734 Fairly happy happy No non_alco_nonalcofamily Female
## 735 Fairly happy happy No nonalco_alcofamily Female
## 736 Not very happy unhappy No non_alco_nonalcofamily Male
## 737 Fairly happy happy No non_alco_nonalcofamily Female
## 738 Fairly happy happy No non_alco_nonalcofamily Female
## 739 Fairly happy happy No non_alco_nonalcofamily Male
## 740 Fairly happy happy No nonalco_alcofamily Male
## 741 Fairly happy happy No non_alco_nonalcofamily Female
## 742 Fairly happy happy No non_alco_nonalcofamily Female
## 743 very happy happy No non_alco_nonalcofamily Female
## 744 Not very happy unhappy Yes alco_nonalcofamily Male
## 745 Fairly happy happy No non_alco_nonalcofamily Female
## 746 Not very happy unhappy No non_alco_nonalcofamily Male
## 747 Fairly happy happy No non_alco_nonalcofamily Female
## 748 very happy happy No non_alco_nonalcofamily Male
## 749 Fairly happy happy No non_alco_nonalcofamily Male
## 750 Fairly happy happy No nonalco_alcofamily Female
## 751 Fairly happy happy No non_alco_nonalcofamily Male
## 752 Fairly happy happy No non_alco_nonalcofamily Male
## 753 Fairly happy happy No nonalco_alcofamily Male
## 754 Fairly happy happy No non_alco_nonalcofamily Female
## 755 very happy happy No non_alco_nonalcofamily Male
## 756 Fairly happy happy No non_alco_nonalcofamily Male
## 757 Not very happy unhappy No non_alco_nonalcofamily Female
## 758 Fairly happy happy No nonalco_alcofamily Female
## 759 Not very happy unhappy No non_alco_nonalcofamily Female
## 760 very happy happy No non_alco_nonalcofamily Male
## 761 Fairly happy happy No non_alco_nonalcofamily Male
## 762 Fairly happy happy No non_alco_nonalcofamily Male
## 763 Fairly happy happy No nonalco_alcofamily Female
## 764 Fairly happy happy No nonalco_alcofamily Female
## 765 very happy happy No non_alco_nonalcofamily Female
## 766 Fairly happy happy No non_alco_nonalcofamily Female
## 767 Fairly happy happy No non_alco_nonalcofamily Male
## 768 very happy happy Yes alco_nonalcofamily Male
## 769 Fairly happy happy No non_alco_nonalcofamily Male
## 770 Not very happy unhappy No non_alco_nonalcofamily Male
## 771 Not very happy unhappy No non_alco_nonalcofamily Male
## 772 very happy happy No non_alco_nonalcofamily Male
## 773 Not very happy unhappy No non_alco_nonalcofamily Male
## 774 Fairly happy happy No non_alco_nonalcofamily Female
## 775 Not very happy unhappy No non_alco_nonalcofamily Male
## 776 Fairly happy happy No non_alco_nonalcofamily Female
## 777 Fairly happy happy No non_alco_nonalcofamily Female
## 778 Fairly happy happy No non_alco_nonalcofamily Male
## 779 Fairly happy happy No non_alco_nonalcofamily Female
## 780 Fairly happy happy No non_alco_nonalcofamily Male
## 781 Fairly happy happy Yes alco_alcofamily Female
## 782 Fairly happy happy No non_alco_nonalcofamily Male
## 783 Fairly happy happy No non_alco_nonalcofamily Male
## 784 Fairly happy happy No non_alco_nonalcofamily Male
## 785 Fairly happy happy No non_alco_nonalcofamily Male
## 786 Fairly happy happy No non_alco_nonalcofamily Female
## 787 Fairly happy happy No non_alco_nonalcofamily Female
## 788 Not very happy unhappy No nonalco_alcofamily Male
## 789 Fairly happy happy No non_alco_nonalcofamily Female
## 790 Fairly happy happy No non_alco_nonalcofamily Female
## 791 Fairly happy happy No non_alco_nonalcofamily Female
## 792 Fairly happy happy No nonalco_alcofamily Female
## 793 Fairly happy happy No non_alco_nonalcofamily Female
## 794 Fairly happy happy No nonalco_alcofamily Female
## 795 Not very happy unhappy Yes alco_alcofamily Other
## 796 Fairly happy happy No nonalco_alcofamily Male
## 797 very happy happy No nonalco_alcofamily Male
## 798 Fairly happy happy No non_alco_nonalcofamily Male
## 799 very happy happy No non_alco_nonalcofamily Female
## 800 Fairly happy happy No nonalco_alcofamily Female
## 801 very happy happy No non_alco_nonalcofamily Female
## 802 Fairly happy happy No non_alco_nonalcofamily Male
## 803 Fairly happy happy No non_alco_nonalcofamily Male
## 804 Fairly happy happy No non_alco_nonalcofamily Female
## 805 Fairly happy happy No non_alco_nonalcofamily Female
## 806 Fairly happy happy No non_alco_nonalcofamily Female
## 807 Not very happy unhappy No non_alco_nonalcofamily Male
## 808 Fairly happy happy No non_alco_nonalcofamily Male
## 809 Fairly happy happy No non_alco_nonalcofamily Male
## 810 Not very happy unhappy No non_alco_nonalcofamily Female
## 811 Not very happy unhappy No non_alco_nonalcofamily Female
## 812 Fairly happy happy No non_alco_nonalcofamily Female
## 813 Fairly happy happy No nonalco_alcofamily Female
## 814 very happy happy No non_alco_nonalcofamily Female
## 815 Fairly happy happy No non_alco_nonalcofamily Male
## 816 Not very happy unhappy No nonalco_alcofamily Male
## 817 Fairly happy happy No nonalco_alcofamily Female
## 818 Not at all happy unhappy No non_alco_nonalcofamily Male
## 819 very happy happy No non_alco_nonalcofamily Female
## 820 Fairly happy happy No non_alco_nonalcofamily Male
## 821 Fairly happy happy No nonalco_alcofamily Female
## 822 Not very happy unhappy No non_alco_nonalcofamily Male
## 823 Fairly happy happy Yes alco_alcofamily Male
## 824 Fairly happy happy No non_alco_nonalcofamily Female
## 825 Fairly happy happy No nonalco_alcofamily Female
## 826 Not at all happy unhappy No non_alco_nonalcofamily Male
## 827 Fairly happy happy No non_alco_nonalcofamily Female
## 828 Fairly happy happy No non_alco_nonalcofamily Male
## 829 Fairly happy happy No non_alco_nonalcofamily Male
## 830 Fairly happy happy No non_alco_nonalcofamily Male
## 831 Fairly happy happy Yes alco_alcofamily Male
## 832 Not very happy unhappy No non_alco_nonalcofamily Male
## 833 Fairly happy happy No non_alco_nonalcofamily Male
## 834 Fairly happy happy No non_alco_nonalcofamily Male
## 835 Fairly happy happy No non_alco_nonalcofamily Female
## 836 Fairly happy happy No non_alco_nonalcofamily Male
## 837 Not very happy unhappy No non_alco_nonalcofamily Male
## 838 Fairly happy happy No non_alco_nonalcofamily Male
## 839 Fairly happy happy No non_alco_nonalcofamily Male
## 840 Not very happy unhappy No non_alco_nonalcofamily Female
## 841 very happy happy No non_alco_nonalcofamily Male
## 842 very happy happy No non_alco_nonalcofamily Male
## 843 Fairly happy happy No non_alco_nonalcofamily Female
## 844 Fairly happy happy No non_alco_nonalcofamily Male
## 845 very happy happy No non_alco_nonalcofamily Female
## 846 Fairly happy happy No non_alco_nonalcofamily Male
## 847 Fairly happy happy No non_alco_nonalcofamily Female
## 848 Fairly happy happy No non_alco_nonalcofamily Male
## 849 Fairly happy happy No non_alco_nonalcofamily Female
## 850 Not very happy unhappy Yes alco_nonalcofamily Male
## 851 Fairly happy happy No non_alco_nonalcofamily Male
## 852 Fairly happy happy No non_alco_nonalcofamily Male
## 853 Fairly happy happy No non_alco_nonalcofamily Male
## 854 Fairly happy happy No non_alco_nonalcofamily Male
## 855 Fairly happy happy No non_alco_nonalcofamily Female
## 856 Fairly happy happy No non_alco_nonalcofamily Female
## 857 very happy happy No non_alco_nonalcofamily Female
## 858 Fairly happy happy No non_alco_nonalcofamily Male
## 859 very happy happy No non_alco_nonalcofamily Male
## 860 Fairly happy happy No non_alco_nonalcofamily Male
## 861 Fairly happy happy No non_alco_nonalcofamily Male
## 862 Fairly happy happy No non_alco_nonalcofamily Male
## 863 Fairly happy happy No non_alco_nonalcofamily Female
## 864 Fairly happy happy No non_alco_nonalcofamily Female
## 865 Fairly happy happy No non_alco_nonalcofamily Male
## 866 Not very happy unhappy No non_alco_nonalcofamily Male
## 867 Not very happy unhappy No non_alco_nonalcofamily Female
## 868 Fairly happy happy No non_alco_nonalcofamily Male
## 869 very happy happy No non_alco_nonalcofamily Male
## 870 Fairly happy happy No non_alco_nonalcofamily Male
## 871 Fairly happy happy No non_alco_nonalcofamily Female
## 872 Fairly happy happy No non_alco_nonalcofamily Female
## 873 Fairly happy happy No non_alco_nonalcofamily Male
## 874 Not very happy unhappy No non_alco_nonalcofamily Female
## 875 very happy happy No non_alco_nonalcofamily Female
## 876 Fairly happy happy No non_alco_nonalcofamily Male
## 877 very happy happy No non_alco_nonalcofamily Male
## 878 Not very happy unhappy No non_alco_nonalcofamily Male
## 879 Fairly happy happy No non_alco_nonalcofamily Male
## 880 Fairly happy happy No non_alco_nonalcofamily Male
## 881 Not very happy unhappy No nonalco_alcofamily Female
## 882 Fairly happy happy No non_alco_nonalcofamily Male
## 883 Fairly happy happy No non_alco_nonalcofamily Male
## 884 Fairly happy happy No non_alco_nonalcofamily Female
## 885 Fairly happy happy No non_alco_nonalcofamily Female
## 886 Fairly happy happy No non_alco_nonalcofamily Female
## 887 Fairly happy happy No non_alco_nonalcofamily Female
## 888 Fairly happy happy No non_alco_nonalcofamily Female
## 889 Fairly happy happy No non_alco_nonalcofamily Male
## 890 Fairly happy happy No non_alco_nonalcofamily Male
## 891 Fairly happy happy No non_alco_nonalcofamily Male
## 892 Fairly happy happy No non_alco_nonalcofamily Female
## 893 Fairly happy happy No non_alco_nonalcofamily Female
## 894 Fairly happy happy No non_alco_nonalcofamily Male
## 895 Not very happy unhappy No non_alco_nonalcofamily Male
## 896 very happy happy No non_alco_nonalcofamily Male
## 897 Not very happy unhappy Yes alco_alcofamily Female
## 898 Fairly happy happy No non_alco_nonalcofamily Male
## 899 Fairly happy happy No non_alco_nonalcofamily Male
## 900 very happy happy No nonalco_alcofamily Female
## 901 Fairly happy happy No non_alco_nonalcofamily Male
## 902 Fairly happy happy No non_alco_nonalcofamily Female
## 903 Fairly happy happy No non_alco_nonalcofamily Female
## 904 Fairly happy happy No non_alco_nonalcofamily Male
## 905 Fairly happy happy No non_alco_nonalcofamily Male
## 906 Not very happy unhappy No non_alco_nonalcofamily Male
## 907 Fairly happy happy No non_alco_nonalcofamily Female
## 908 Fairly happy happy No non_alco_nonalcofamily Female
## 909 Not very happy unhappy No non_alco_nonalcofamily Female
## 910 Fairly happy happy No nonalco_alcofamily Female
## 911 Not very happy unhappy Yes alco_alcofamily Male
## 912 Fairly happy happy No non_alco_nonalcofamily Female
## 913 Not very happy unhappy No non_alco_nonalcofamily Female
## 914 Fairly happy happy No non_alco_nonalcofamily Female
## 915 Fairly happy happy No nonalco_alcofamily Female
## 916 Fairly happy happy No non_alco_nonalcofamily Female
## 917 Fairly happy happy No non_alco_nonalcofamily Male
## 918 Fairly happy happy No non_alco_nonalcofamily Male
## 919 Not very happy unhappy No non_alco_nonalcofamily Male
## 920 Fairly happy happy No non_alco_nonalcofamily Male
## 921 Fairly happy happy No nonalco_alcofamily Female
## 922 Fairly happy happy No nonalco_alcofamily Female
## 923 very happy happy No non_alco_nonalcofamily Female
## 924 Fairly happy happy No non_alco_nonalcofamily Male
## 925 Fairly happy happy No non_alco_nonalcofamily Female
## 926 Not at all happy unhappy No non_alco_nonalcofamily Male
## 927 Fairly happy happy No non_alco_nonalcofamily Female
## 928 Fairly happy happy No non_alco_nonalcofamily Male
## 929 Not at all happy unhappy No non_alco_nonalcofamily Male
## 930 Fairly happy happy No non_alco_nonalcofamily Male
## 931 very happy happy No non_alco_nonalcofamily Male
## 932 Fairly happy happy No non_alco_nonalcofamily Female
## 933 Fairly happy happy No non_alco_nonalcofamily Female
## 934 Not very happy unhappy No non_alco_nonalcofamily Male
## 935 Fairly happy happy No non_alco_nonalcofamily Male
## 936 Fairly happy happy No non_alco_nonalcofamily Female
## 937 Fairly happy happy No non_alco_nonalcofamily Male
## 938 very happy happy No non_alco_nonalcofamily Female
## 939 Not very happy unhappy No non_alco_nonalcofamily Female
## 940 very happy happy No non_alco_nonalcofamily Female
## 941 Not at all happy unhappy No non_alco_nonalcofamily Female
## 942 Fairly happy happy No non_alco_nonalcofamily Female
## 943 Fairly happy happy No non_alco_nonalcofamily Female
## 944 Not very happy unhappy No nonalco_alcofamily Female
## 945 Not very happy unhappy No non_alco_nonalcofamily Female
## 946 Fairly happy happy No non_alco_nonalcofamily Male
## 947 very happy happy No nonalco_alcofamily Female
## 948 Not very happy unhappy No nonalco_alcofamily Female
## 949 very happy happy No non_alco_nonalcofamily Female
## 950 Fairly happy happy No non_alco_nonalcofamily Female
## 951 Not very happy unhappy No nonalco_alcofamily Female
## 952 Fairly happy happy No non_alco_nonalcofamily Female
## 953 Fairly happy happy No non_alco_nonalcofamily Female
## 954 Fairly happy happy No non_alco_nonalcofamily Female
## 955 Fairly happy happy No non_alco_nonalcofamily Female
## 956 Not at all happy unhappy No non_alco_nonalcofamily Female
## 957 Not very happy unhappy No non_alco_nonalcofamily Female
## 958 very happy happy No non_alco_nonalcofamily Male
## 959 Fairly happy happy No non_alco_nonalcofamily Female
## 960 Fairly happy happy No non_alco_nonalcofamily Female
## 961 Not very happy unhappy No non_alco_nonalcofamily Female
## 962 Not very happy unhappy No non_alco_nonalcofamily Female
## 963 Fairly happy happy No non_alco_nonalcofamily Female
## 964 Fairly happy happy No non_alco_nonalcofamily Female
## 965 very happy happy No non_alco_nonalcofamily Female
## 966 Fairly happy happy No non_alco_nonalcofamily Male
## 967 Fairly happy happy No non_alco_nonalcofamily Male
## 968 Fairly happy happy No non_alco_nonalcofamily Male
## 969 Fairly happy happy No non_alco_nonalcofamily Male
## 970 Not very happy unhappy No non_alco_nonalcofamily Male
## 971 Not very happy unhappy No non_alco_nonalcofamily Female
## 972 Fairly happy happy Yes alco_nonalcofamily Male
## 973 Fairly happy happy No non_alco_nonalcofamily Male
## 974 Fairly happy happy No non_alco_nonalcofamily Male
## 975 Not at all happy unhappy No non_alco_nonalcofamily Male
## 976 Fairly happy happy Yes alco_alcofamily Female
## 977 Fairly happy happy No non_alco_nonalcofamily Female
## 978 Fairly happy happy No non_alco_nonalcofamily Female
## 979 Fairly happy happy No non_alco_nonalcofamily Female
## 980 Fairly happy happy No non_alco_nonalcofamily Female
## 981 very happy happy No non_alco_nonalcofamily Female
## 982 Not very happy unhappy No nonalco_alcofamily Female
## 983 very happy happy No non_alco_nonalcofamily Male
## 984 Fairly happy happy No non_alco_nonalcofamily Female
## 985 Fairly happy happy No non_alco_nonalcofamily Female
## 986 Not at all happy unhappy No nonalco_alcofamily Female
## 987 Fairly happy happy No non_alco_nonalcofamily Male
## 988 Fairly happy happy No non_alco_nonalcofamily Male
## 989 Fairly happy happy No nonalco_alcofamily Female
## 990 Fairly happy happy No non_alco_nonalcofamily Female
## 991 Fairly happy happy No non_alco_nonalcofamily Male
## 992 Fairly happy happy No non_alco_nonalcofamily Female
## 993 Fairly happy happy No non_alco_nonalcofamily Male
## 994 Fairly happy happy No non_alco_nonalcofamily Male
## 995 Fairly happy happy No nonalco_alcofamily Female
## 996 Fairly happy happy No non_alco_nonalcofamily Female
## 997 Not at all happy unhappy No non_alco_nonalcofamily Male
## 998 Fairly happy happy No non_alco_nonalcofamily Male
## 999 Fairly happy happy No non_alco_nonalcofamily Female
## 1000 Not very happy unhappy No non_alco_nonalcofamily Female
## 1001 Fairly happy happy No non_alco_nonalcofamily Female
## 1002 very happy happy No non_alco_nonalcofamily Male
## 1003 Fairly happy happy No non_alco_nonalcofamily Male
## 1004 Not very happy unhappy No non_alco_nonalcofamily Female
## 1005 Fairly happy happy No non_alco_nonalcofamily Female
## 1006 Fairly happy happy No non_alco_nonalcofamily Male
## 1007 Fairly happy happy No non_alco_nonalcofamily Female
## 1008 Fairly happy happy No non_alco_nonalcofamily Male
## 1009 Fairly happy happy No non_alco_nonalcofamily Male
## 1010 Not very happy unhappy Yes alco_nonalcofamily Other
## 1011 Fairly happy happy No non_alco_nonalcofamily Male
## 1012 Fairly happy happy No non_alco_nonalcofamily Male
## 1013 Fairly happy happy No non_alco_nonalcofamily Male
## 1014 Not very happy unhappy No non_alco_nonalcofamily Male
## 1015 Fairly happy happy No non_alco_nonalcofamily Male
## 1016 Not very happy unhappy No non_alco_nonalcofamily Male
## 1017 Not very happy unhappy No non_alco_nonalcofamily Female
## 1018 Fairly happy happy No non_alco_nonalcofamily Male
## 1019 very happy happy No non_alco_nonalcofamily Male
## 1020 Fairly happy happy No non_alco_nonalcofamily Male
## 1021 Fairly happy happy No non_alco_nonalcofamily Male
## 1022 Fairly happy happy No non_alco_nonalcofamily Female
## 1023 Fairly happy happy No non_alco_nonalcofamily Male
## 1024 Fairly happy happy No non_alco_nonalcofamily Male
## 1025 very happy happy No non_alco_nonalcofamily Female
## 1026 Fairly happy happy No non_alco_nonalcofamily Female
## 1027 Fairly happy happy No non_alco_nonalcofamily Female
## 1028 Fairly happy happy No non_alco_nonalcofamily Female
## 1029 Fairly happy happy No nonalco_alcofamily Male
## 1030 very happy happy No non_alco_nonalcofamily Male
## 1031 Fairly happy happy Yes alco_alcofamily Male
## 1032 Not very happy unhappy No nonalco_alcofamily Female
## 1033 Fairly happy happy Yes alco_nonalcofamily Female
## 1034 Fairly happy happy No non_alco_nonalcofamily Male
## 1035 Fairly happy happy No non_alco_nonalcofamily Male
## 1036 Fairly happy happy No non_alco_nonalcofamily Female
## 1037 Not very happy unhappy No non_alco_nonalcofamily Female
## 1038 Fairly happy happy Yes alco_nonalcofamily Male
## 1039 Fairly happy happy No non_alco_nonalcofamily Female
## 1040 very happy happy No non_alco_nonalcofamily Male
## 1041 Fairly happy happy No non_alco_nonalcofamily Male
## 1042 Fairly happy happy No nonalco_alcofamily Female
## 1043 Not very happy unhappy No nonalco_alcofamily Female
## 1044 Not very happy unhappy No non_alco_nonalcofamily Female
## 1045 Not very happy unhappy No non_alco_nonalcofamily Male
## 1046 Fairly happy happy No nonalco_alcofamily Female
## 1047 Fairly happy happy No non_alco_nonalcofamily Female
## 1048 very happy happy No non_alco_nonalcofamily Male
## 1049 Fairly happy happy No non_alco_nonalcofamily Male
## 1050 Fairly happy happy No non_alco_nonalcofamily Male
## 1051 Not very happy unhappy No nonalco_alcofamily Male
## 1052 Not very happy unhappy No non_alco_nonalcofamily Male
## 1053 Fairly happy happy No nonalco_alcofamily Male
## 1054 Fairly happy happy No non_alco_nonalcofamily Male
## 1055 Fairly happy happy No nonalco_alcofamily Female
## 1056 Not very happy unhappy No nonalco_alcofamily Female
## 1057 very happy happy No non_alco_nonalcofamily Male
## 1058 Fairly happy happy No nonalco_alcofamily Female
## 1059 Fairly happy happy No nonalco_alcofamily Female
## 1060 Fairly happy happy No nonalco_alcofamily Female
## 1061 Fairly happy happy Yes alco_nonalcofamily Female
## 1062 very happy happy No non_alco_nonalcofamily Male
## 1063 Fairly happy happy No non_alco_nonalcofamily Male
## 1064 Not very happy unhappy No non_alco_nonalcofamily Male
## 1065 Not very happy unhappy No nonalco_alcofamily Female
## 1066 Fairly happy happy No non_alco_nonalcofamily Female
## 1067 Fairly happy happy No non_alco_nonalcofamily Female
## 1068 very happy happy No non_alco_nonalcofamily Male
## 1069 Fairly happy happy No non_alco_nonalcofamily Female
## 1070 Fairly happy happy No nonalco_alcofamily Female
## 1071 Fairly happy happy No non_alco_nonalcofamily Female
## 1072 Not very happy unhappy No non_alco_nonalcofamily Male
## 1073 Fairly happy happy No nonalco_alcofamily Female
## 1074 Fairly happy happy No nonalco_alcofamily Male
## 1075 Fairly happy happy No nonalco_alcofamily Female
## 1076 very happy happy No non_alco_nonalcofamily Male
## 1077 Not very happy unhappy No nonalco_alcofamily Female
## 1078 Not very happy unhappy No non_alco_nonalcofamily Male
## 1079 Fairly happy happy No non_alco_nonalcofamily Male
## 1080 Fairly happy happy No non_alco_nonalcofamily Female
## 1081 very happy happy No non_alco_nonalcofamily Male
## 1082 Fairly happy happy No non_alco_nonalcofamily Male
## 1083 Fairly happy happy No non_alco_nonalcofamily Female
## 1084 Fairly happy happy No non_alco_nonalcofamily Male
## 1085 Fairly happy happy No non_alco_nonalcofamily Male
## 1086 Fairly happy happy No non_alco_nonalcofamily Male
## 1087 Fairly happy happy No nonalco_alcofamily Female
## 1088 very happy happy No nonalco_alcofamily Female
## 1089 very happy happy No non_alco_nonalcofamily Male
## 1090 Not at all happy unhappy No non_alco_nonalcofamily Female
## 1091 Fairly happy happy No non_alco_nonalcofamily Male
## 1092 very happy happy No non_alco_nonalcofamily Male
## 1093 Fairly happy happy No non_alco_nonalcofamily Female
## 1094 Fairly happy happy No nonalco_alcofamily Female
## 1095 Fairly happy happy No nonalco_alcofamily Female
## 1096 Fairly happy happy No non_alco_nonalcofamily Male
## 1097 Fairly happy happy No non_alco_nonalcofamily Male
## 1098 Fairly happy happy No nonalco_alcofamily Male
## 1099 very happy happy No non_alco_nonalcofamily Male
## 1100 Fairly happy happy No non_alco_nonalcofamily Male
## 1101 Fairly happy happy No non_alco_nonalcofamily Male
## 1102 Fairly happy happy No non_alco_nonalcofamily Male
## 1103 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1104 Fairly happy happy No non_alco_nonalcofamily Female
## 1105 very happy happy No non_alco_nonalcofamily Female
## 1106 very happy happy No non_alco_nonalcofamily Female
## 1107 Fairly happy happy No non_alco_nonalcofamily Male
## 1108 Not very happy unhappy No non_alco_nonalcofamily Female
## 1109 Fairly happy happy No nonalco_alcofamily Other
## 1110 Fairly happy happy No non_alco_nonalcofamily Male
## 1111 Fairly happy happy No non_alco_nonalcofamily Male
## 1112 Fairly happy happy No non_alco_nonalcofamily Male
## 1113 Fairly happy happy No non_alco_nonalcofamily Female
## 1114 Fairly happy happy No non_alco_nonalcofamily Female
## 1115 Fairly happy happy No non_alco_nonalcofamily Male
## 1116 Fairly happy happy No non_alco_nonalcofamily Male
## 1117 very happy happy No non_alco_nonalcofamily Male
## 1118 Not very happy unhappy No nonalco_alcofamily Male
## 1119 Fairly happy happy No non_alco_nonalcofamily Female
## 1120 Fairly happy happy No non_alco_nonalcofamily Female
## 1121 Fairly happy happy No non_alco_nonalcofamily Other
## 1122 Fairly happy happy No non_alco_nonalcofamily Male
## 1123 very happy happy No non_alco_nonalcofamily Male
## 1124 Not at all happy unhappy Yes alco_nonalcofamily Male
## 1125 Fairly happy happy No non_alco_nonalcofamily Male
## 1126 Fairly happy happy No nonalco_alcofamily Female
## 1127 Fairly happy happy No nonalco_alcofamily Female
## 1128 Not very happy unhappy No nonalco_alcofamily Female
## 1129 Not very happy unhappy No non_alco_nonalcofamily Male
## 1130 Fairly happy happy No non_alco_nonalcofamily Female
## 1131 very happy happy No non_alco_nonalcofamily Female
## 1132 very happy happy No non_alco_nonalcofamily Female
## 1133 Not at all happy unhappy No non_alco_nonalcofamily Female
## 1134 very happy happy No non_alco_nonalcofamily Female
## 1135 Fairly happy happy No nonalco_alcofamily Male
## 1136 Not very happy unhappy No non_alco_nonalcofamily Male
## 1137 very happy happy No non_alco_nonalcofamily Male
## 1138 Fairly happy happy No non_alco_nonalcofamily Male
## 1139 Not very happy unhappy No non_alco_nonalcofamily Female
## 1140 very happy happy No non_alco_nonalcofamily Male
## 1141 Fairly happy happy No non_alco_nonalcofamily Male
## 1142 Fairly happy happy No non_alco_nonalcofamily Male
## 1143 very happy happy No non_alco_nonalcofamily Male
## 1144 Not very happy unhappy No non_alco_nonalcofamily Female
## 1145 Fairly happy happy No non_alco_nonalcofamily Male
## 1146 Fairly happy happy No non_alco_nonalcofamily Male
## 1147 Not very happy unhappy No non_alco_nonalcofamily Male
## 1148 Fairly happy happy No non_alco_nonalcofamily Female
## 1149 Fairly happy happy No non_alco_nonalcofamily Male
## 1150 Not very happy unhappy No non_alco_nonalcofamily Female
## 1151 Not very happy unhappy No non_alco_nonalcofamily Male
## 1152 Fairly happy happy No non_alco_nonalcofamily Male
## 1153 very happy happy Yes alco_alcofamily Female
## 1154 Fairly happy happy No non_alco_nonalcofamily Male
## 1155 Not very happy unhappy No non_alco_nonalcofamily Female
## 1156 Not very happy unhappy No nonalco_alcofamily Female
## 1157 Not very happy unhappy No non_alco_nonalcofamily Male
## 1158 Not very happy unhappy No non_alco_nonalcofamily Female
## 1159 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1160 very happy happy No nonalco_alcofamily Female
## 1161 Fairly happy happy No nonalco_alcofamily Male
## 1162 Fairly happy happy No non_alco_nonalcofamily Female
## 1163 Fairly happy happy No nonalco_alcofamily Female
## 1164 Fairly happy happy No non_alco_nonalcofamily Male
## 1165 Fairly happy happy No nonalco_alcofamily Female
## 1166 very happy happy No non_alco_nonalcofamily Male
## 1167 Fairly happy happy No non_alco_nonalcofamily Male
## 1168 Fairly happy happy No non_alco_nonalcofamily Male
## 1169 Fairly happy happy Yes alco_nonalcofamily Male
## 1170 Fairly happy happy No non_alco_nonalcofamily Male
## 1171 Fairly happy happy No non_alco_nonalcofamily Male
## 1172 very happy happy No non_alco_nonalcofamily Female
## 1173 very happy happy No non_alco_nonalcofamily Male
## 1174 very happy happy No non_alco_nonalcofamily Male
## 1175 Not at all happy unhappy No nonalco_alcofamily Female
## 1176 Not very happy unhappy Yes alco_alcofamily Other
## 1177 Not very happy unhappy No non_alco_nonalcofamily Male
## 1178 Fairly happy happy No nonalco_alcofamily Female
## 1179 Fairly happy happy No non_alco_nonalcofamily Male
## 1180 Fairly happy happy No non_alco_nonalcofamily Female
## 1181 Not very happy unhappy No non_alco_nonalcofamily Male
## 1182 Fairly happy happy No non_alco_nonalcofamily Male
## 1183 Fairly happy happy Yes alco_alcofamily Female
## 1184 Fairly happy happy No non_alco_nonalcofamily Female
## 1185 Fairly happy happy No nonalco_alcofamily Male
## 1186 very happy happy No nonalco_alcofamily Male
## 1187 Not very happy unhappy Yes alco_nonalcofamily Male
## 1188 very happy happy No non_alco_nonalcofamily Male
## 1189 Fairly happy happy No non_alco_nonalcofamily Male
## 1190 Not very happy unhappy No non_alco_nonalcofamily Male
## 1191 Fairly happy happy No non_alco_nonalcofamily Male
## 1192 Not very happy unhappy No non_alco_nonalcofamily Male
## 1193 Not very happy unhappy No non_alco_nonalcofamily Male
## 1194 Fairly happy happy No non_alco_nonalcofamily Male
## 1195 Fairly happy happy No nonalco_alcofamily Female
## 1196 Fairly happy happy No non_alco_nonalcofamily Male
## 1197 Fairly happy happy No non_alco_nonalcofamily Male
## 1198 Fairly happy happy No nonalco_alcofamily Male
## 1199 very happy happy No non_alco_nonalcofamily Female
## 1200 Not very happy unhappy No nonalco_alcofamily Female
## 1201 Fairly happy happy No non_alco_nonalcofamily Male
## 1202 Fairly happy happy No non_alco_nonalcofamily Female
## 1203 Fairly happy happy No non_alco_nonalcofamily Male
## 1204 Fairly happy happy No non_alco_nonalcofamily Male
## 1205 Fairly happy happy No non_alco_nonalcofamily Female
## 1206 Fairly happy happy No nonalco_alcofamily Female
## 1207 Fairly happy happy No non_alco_nonalcofamily Male
## 1208 Fairly happy happy Yes alco_nonalcofamily Male
## 1209 Fairly happy happy No non_alco_nonalcofamily Male
## 1210 Fairly happy happy No non_alco_nonalcofamily Male
## 1211 Not very happy unhappy No non_alco_nonalcofamily Male
## 1212 Fairly happy happy No non_alco_nonalcofamily Other
## 1213 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1214 very happy happy No non_alco_nonalcofamily Female
## 1215 Fairly happy happy No non_alco_nonalcofamily Female
## 1216 very happy happy No nonalco_alcofamily Male
## 1217 Fairly happy happy No non_alco_nonalcofamily Female
## 1218 very happy happy No non_alco_nonalcofamily Female
## 1219 very happy happy No non_alco_nonalcofamily Female
## 1220 Fairly happy happy No non_alco_nonalcofamily Female
## 1221 Not at all happy unhappy No nonalco_alcofamily Male
## 1222 Fairly happy happy No non_alco_nonalcofamily Female
## 1223 Not very happy unhappy No nonalco_alcofamily Female
## 1224 Fairly happy happy No non_alco_nonalcofamily Female
## 1225 Not very happy unhappy No nonalco_alcofamily Female
## 1226 very happy happy No non_alco_nonalcofamily Male
## 1227 Fairly happy happy No non_alco_nonalcofamily Male
## 1228 Not very happy unhappy No non_alco_nonalcofamily Male
## 1229 Fairly happy happy Yes alco_nonalcofamily Male
## 1230 Fairly happy happy No non_alco_nonalcofamily Male
## 1231 Fairly happy happy Yes alco_nonalcofamily Female
## 1232 Fairly happy happy No non_alco_nonalcofamily Female
## 1233 Fairly happy happy No non_alco_nonalcofamily Female
## 1234 Fairly happy happy No nonalco_alcofamily Female
## 1235 very happy happy No nonalco_alcofamily Female
## 1236 Fairly happy happy No nonalco_alcofamily Male
## 1237 Not very happy unhappy No non_alco_nonalcofamily Male
## 1238 very happy happy No nonalco_alcofamily Female
## 1239 Not very happy unhappy No non_alco_nonalcofamily Female
## 1240 Fairly happy happy No non_alco_nonalcofamily Female
## 1241 very happy happy No non_alco_nonalcofamily Male
## 1242 Fairly happy happy Yes alco_alcofamily Male
## 1243 very happy happy No non_alco_nonalcofamily Female
## 1244 Fairly happy happy No non_alco_nonalcofamily Male
## 1245 Not very happy unhappy No non_alco_nonalcofamily Female
## 1246 Fairly happy happy No non_alco_nonalcofamily Female
## 1247 Not very happy unhappy No non_alco_nonalcofamily Male
## 1248 Fairly happy happy No non_alco_nonalcofamily Male
## 1249 Fairly happy happy No nonalco_alcofamily Male
## 1250 Not very happy unhappy No nonalco_alcofamily Female
## 1251 Fairly happy happy No non_alco_nonalcofamily Female
## 1252 very happy happy No non_alco_nonalcofamily Male
## 1253 Fairly happy happy No non_alco_nonalcofamily Female
## 1254 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1255 very happy happy No non_alco_nonalcofamily Female
## 1256 Fairly happy happy No non_alco_nonalcofamily Male
## 1257 very happy happy No non_alco_nonalcofamily Male
## 1258 Fairly happy happy No non_alco_nonalcofamily Male
## 1259 Not very happy unhappy No non_alco_nonalcofamily Male
## 1260 Fairly happy happy No non_alco_nonalcofamily Female
## 1261 very happy happy No non_alco_nonalcofamily Male
## 1262 very happy happy No non_alco_nonalcofamily Male
## 1263 Fairly happy happy No non_alco_nonalcofamily Female
## 1264 Fairly happy happy No nonalco_alcofamily Female
## 1265 Fairly happy happy No non_alco_nonalcofamily Female
## 1266 Fairly happy happy No non_alco_nonalcofamily Female
## 1267 very happy happy No non_alco_nonalcofamily Male
## 1268 Fairly happy happy No nonalco_alcofamily Male
## 1269 Not very happy unhappy No non_alco_nonalcofamily Male
## 1270 Fairly happy happy No non_alco_nonalcofamily Male
## 1271 Fairly happy happy Yes alco_nonalcofamily Male
## 1272 Fairly happy happy No non_alco_nonalcofamily Male
## 1273 Fairly happy happy No nonalco_alcofamily Female
## 1274 Fairly happy happy Yes alco_nonalcofamily Female
## 1275 very happy happy No non_alco_nonalcofamily Male
## 1276 Fairly happy happy No non_alco_nonalcofamily Male
## 1277 Fairly happy happy No non_alco_nonalcofamily Female
## 1278 Fairly happy happy No nonalco_alcofamily Male
## 1279 Fairly happy happy No nonalco_alcofamily Female
## 1280 Fairly happy happy No non_alco_nonalcofamily Female
## 1281 Fairly happy happy No non_alco_nonalcofamily Male
## 1282 Not very happy unhappy No non_alco_nonalcofamily Female
## 1283 Fairly happy happy No non_alco_nonalcofamily Male
## 1284 Fairly happy happy No nonalco_alcofamily Male
## 1285 very happy happy No non_alco_nonalcofamily Male
## 1286 Fairly happy happy No non_alco_nonalcofamily Male
## 1287 Not very happy unhappy No non_alco_nonalcofamily Female
## 1288 Fairly happy happy No non_alco_nonalcofamily Male
## 1289 Not very happy unhappy No non_alco_nonalcofamily Female
## 1290 Fairly happy happy No non_alco_nonalcofamily Male
## 1291 Fairly happy happy No nonalco_alcofamily Female
## 1292 Fairly happy happy No non_alco_nonalcofamily Female
## 1293 Fairly happy happy No non_alco_nonalcofamily Female
## 1294 Fairly happy happy No non_alco_nonalcofamily Female
## 1295 Not very happy unhappy No non_alco_nonalcofamily Male
## 1296 Fairly happy happy No non_alco_nonalcofamily Female
## 1297 Fairly happy happy No non_alco_nonalcofamily Female
## 1298 Fairly happy happy No nonalco_alcofamily Female
## 1299 Fairly happy happy No non_alco_nonalcofamily Male
## 1300 very happy happy No non_alco_nonalcofamily Female
## 1301 Fairly happy happy No non_alco_nonalcofamily Male
## 1302 Fairly happy happy No non_alco_nonalcofamily Female
## 1303 Fairly happy happy No non_alco_nonalcofamily Male
## 1304 very happy happy No non_alco_nonalcofamily Female
## 1305 very happy happy No nonalco_alcofamily Female
## 1306 Fairly happy happy No non_alco_nonalcofamily Female
## 1307 Fairly happy happy No non_alco_nonalcofamily Male
## 1308 Fairly happy happy No non_alco_nonalcofamily Male
## 1309 very happy happy No non_alco_nonalcofamily Female
## 1310 Not very happy unhappy No non_alco_nonalcofamily Female
## 1311 Fairly happy happy No non_alco_nonalcofamily Male
## 1312 Fairly happy happy No non_alco_nonalcofamily Female
## 1313 Fairly happy happy No non_alco_nonalcofamily Male
## 1314 Fairly happy happy No non_alco_nonalcofamily Female
## 1315 Fairly happy happy No non_alco_nonalcofamily Male
## 1316 Fairly happy happy No non_alco_nonalcofamily Female
## 1317 Not very happy unhappy No non_alco_nonalcofamily Male
## 1318 Not very happy unhappy No nonalco_alcofamily Male
## 1319 Fairly happy happy No non_alco_nonalcofamily Female
## 1320 very happy happy No non_alco_nonalcofamily Female
## 1321 Not very happy unhappy No non_alco_nonalcofamily Male
## 1322 Not very happy unhappy No non_alco_nonalcofamily Male
## 1323 Fairly happy happy No nonalco_alcofamily Male
## 1324 Not at all happy unhappy No non_alco_nonalcofamily Female
## 1325 Not at all happy unhappy No non_alco_nonalcofamily Other
## 1326 Fairly happy happy No nonalco_alcofamily Male
## 1327 Fairly happy happy No non_alco_nonalcofamily Female
## 1328 Not very happy unhappy No non_alco_nonalcofamily Female
## 1329 Fairly happy happy Yes alco_nonalcofamily Male
## 1330 Fairly happy happy No non_alco_nonalcofamily Female
## 1331 Not very happy unhappy No non_alco_nonalcofamily Male
## 1332 Fairly happy happy No non_alco_nonalcofamily Female
## 1333 Not very happy unhappy No non_alco_nonalcofamily Male
## 1334 Fairly happy happy Yes alco_alcofamily Male
## 1335 Fairly happy happy No non_alco_nonalcofamily Male
## 1336 Not very happy unhappy No nonalco_alcofamily Male
## 1337 Not at all happy unhappy No nonalco_alcofamily Female
## 1338 Fairly happy happy No non_alco_nonalcofamily Female
## 1339 Not very happy unhappy No non_alco_nonalcofamily Female
## 1340 Not very happy unhappy No non_alco_nonalcofamily Male
## 1341 Fairly happy happy No non_alco_nonalcofamily Male
## 1342 very happy happy No non_alco_nonalcofamily Male
## 1343 Fairly happy happy No non_alco_nonalcofamily Female
## 1344 Fairly happy happy No non_alco_nonalcofamily Female
## 1345 very happy happy No non_alco_nonalcofamily Female
## 1346 Fairly happy happy No non_alco_nonalcofamily Male
## 1347 Not very happy unhappy No non_alco_nonalcofamily Female
## 1348 Fairly happy happy No non_alco_nonalcofamily Male
## 1349 Fairly happy happy No nonalco_alcofamily Female
## 1350 Fairly happy happy No non_alco_nonalcofamily Male
## 1351 very happy happy No non_alco_nonalcofamily Male
## 1352 very happy happy No nonalco_alcofamily Male
## 1353 Fairly happy happy No non_alco_nonalcofamily Male
## 1354 very happy happy No non_alco_nonalcofamily Female
## 1355 Fairly happy happy No non_alco_nonalcofamily Female
## 1356 Fairly happy happy No non_alco_nonalcofamily Male
## 1357 Fairly happy happy No non_alco_nonalcofamily Female
## 1358 very happy happy No non_alco_nonalcofamily Male
## 1359 Not very happy unhappy No nonalco_alcofamily Female
## 1360 Fairly happy happy No non_alco_nonalcofamily Female
## 1361 Fairly happy happy No nonalco_alcofamily Female
## 1362 Fairly happy happy No non_alco_nonalcofamily Female
## 1363 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1364 Not very happy unhappy No non_alco_nonalcofamily Female
## 1365 Not very happy unhappy No non_alco_nonalcofamily Male
## 1366 Fairly happy happy No non_alco_nonalcofamily Male
## 1367 Fairly happy happy No non_alco_nonalcofamily Male
## 1368 Fairly happy happy No nonalco_alcofamily Female
## 1369 Not very happy unhappy No non_alco_nonalcofamily Female
## 1370 Not very happy unhappy No non_alco_nonalcofamily Male
## 1371 Fairly happy happy No non_alco_nonalcofamily Male
## 1372 Fairly happy happy No non_alco_nonalcofamily Female
## 1373 Fairly happy happy No nonalco_alcofamily Female
## 1374 Fairly happy happy No non_alco_nonalcofamily Male
## 1375 Fairly happy happy No nonalco_alcofamily Female
## 1376 Fairly happy happy No non_alco_nonalcofamily Male
## 1377 Fairly happy happy No non_alco_nonalcofamily Female
## 1378 Fairly happy happy No non_alco_nonalcofamily Male
## 1379 Fairly happy happy No non_alco_nonalcofamily Female
## 1380 Not very happy unhappy No non_alco_nonalcofamily Male
## 1381 Not very happy unhappy No non_alco_nonalcofamily Male
## 1382 Not very happy unhappy No non_alco_nonalcofamily Male
## 1383 Fairly happy happy Yes alco_nonalcofamily Female
## 1384 Fairly happy happy No non_alco_nonalcofamily Female
## 1385 Not at all happy unhappy No non_alco_nonalcofamily Female
## 1386 Fairly happy happy No non_alco_nonalcofamily Female
## 1387 Fairly happy happy No non_alco_nonalcofamily Female
## 1388 Fairly happy happy No non_alco_nonalcofamily Female
## 1389 Not very happy unhappy No non_alco_nonalcofamily Male
## 1390 Fairly happy happy No non_alco_nonalcofamily Male
## 1391 Fairly happy happy No nonalco_alcofamily Male
## 1392 Not very happy unhappy No non_alco_nonalcofamily Other
## 1393 Fairly happy happy No non_alco_nonalcofamily Male
## 1394 Fairly happy happy No nonalco_alcofamily Female
## 1395 Not very happy unhappy No non_alco_nonalcofamily Female
## 1396 Fairly happy happy No non_alco_nonalcofamily Female
## 1397 Fairly happy happy No non_alco_nonalcofamily Female
## 1398 Not very happy unhappy No non_alco_nonalcofamily Female
## 1399 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1400 Not very happy unhappy No non_alco_nonalcofamily Female
## 1401 Not very happy unhappy No non_alco_nonalcofamily Female
## 1402 Fairly happy happy No non_alco_nonalcofamily Female
## 1403 Not very happy unhappy Yes alco_nonalcofamily Female
## 1404 Not very happy unhappy No non_alco_nonalcofamily Female
## 1405 Not very happy unhappy No non_alco_nonalcofamily Male
## 1406 Fairly happy happy No non_alco_nonalcofamily Female
## 1407 Not very happy unhappy Yes alco_nonalcofamily Male
## 1408 Fairly happy happy No nonalco_alcofamily Male
## 1409 Fairly happy happy No non_alco_nonalcofamily Female
## 1410 Fairly happy happy No nonalco_alcofamily Female
## 1411 Fairly happy happy No non_alco_nonalcofamily Male
## 1412 Fairly happy happy No non_alco_nonalcofamily Female
## 1413 Fairly happy happy No non_alco_nonalcofamily Female
## 1414 Fairly happy happy No non_alco_nonalcofamily Female
## 1415 Fairly happy happy No nonalco_alcofamily Female
## 1416 Fairly happy happy No non_alco_nonalcofamily Female
## 1417 very happy happy No non_alco_nonalcofamily Female
## 1418 Fairly happy happy No nonalco_alcofamily Female
## 1419 Fairly happy happy No non_alco_nonalcofamily Male
## 1420 Fairly happy happy No non_alco_nonalcofamily Female
## 1421 Fairly happy happy No non_alco_nonalcofamily Male
## 1422 Fairly happy happy No non_alco_nonalcofamily Male
## 1423 Fairly happy happy No non_alco_nonalcofamily Female
## 1424 Not very happy unhappy No non_alco_nonalcofamily Male
## 1425 very happy happy No non_alco_nonalcofamily Male
## 1426 Not very happy unhappy No non_alco_nonalcofamily Female
## 1427 Fairly happy happy Yes alco_nonalcofamily Male
## 1428 very happy happy No non_alco_nonalcofamily Male
## 1429 Not very happy unhappy Yes alco_alcofamily Female
## 1430 Not very happy unhappy No nonalco_alcofamily Female
## 1431 Fairly happy happy No non_alco_nonalcofamily Male
## 1432 Fairly happy happy No non_alco_nonalcofamily Male
## 1433 Not very happy unhappy No non_alco_nonalcofamily Female
## 1434 Not very happy unhappy No nonalco_alcofamily Female
## 1435 Fairly happy happy No non_alco_nonalcofamily Male
## 1436 Fairly happy happy No non_alco_nonalcofamily Other
## 1437 Not very happy unhappy No non_alco_nonalcofamily Male
## 1438 Fairly happy happy No non_alco_nonalcofamily Female
## 1439 Not very happy unhappy No nonalco_alcofamily Female
## 1440 Fairly happy happy No non_alco_nonalcofamily Female
## 1441 Fairly happy happy No non_alco_nonalcofamily Female
## 1442 very happy happy No nonalco_alcofamily Male
## 1443 Fairly happy happy No non_alco_nonalcofamily Male
## 1444 Fairly happy happy No non_alco_nonalcofamily Female
## 1445 Fairly happy happy No non_alco_nonalcofamily Female
## 1446 Fairly happy happy No nonalco_alcofamily Female
## 1447 Fairly happy happy No nonalco_alcofamily Female
## 1448 Fairly happy happy No nonalco_alcofamily Female
## 1449 Not very happy unhappy No non_alco_nonalcofamily Male
## 1450 Fairly happy happy No non_alco_nonalcofamily Female
## 1451 Fairly happy happy No non_alco_nonalcofamily Female
## 1452 Fairly happy happy No non_alco_nonalcofamily Male
## 1453 Not very happy unhappy No non_alco_nonalcofamily Male
## 1454 very happy happy No nonalco_alcofamily Male
## 1455 Fairly happy happy No nonalco_alcofamily Male
## 1456 Fairly happy happy No nonalco_alcofamily Female
## 1457 Fairly happy happy No non_alco_nonalcofamily Female
## 1458 very happy happy No nonalco_alcofamily Male
## 1459 Fairly happy happy No nonalco_alcofamily Female
## 1460 Fairly happy happy No non_alco_nonalcofamily Female
## 1461 Fairly happy happy No non_alco_nonalcofamily Male
## 1462 Not at all happy unhappy No nonalco_alcofamily Female
## 1463 Fairly happy happy No non_alco_nonalcofamily Female
## 1464 Fairly happy happy No non_alco_nonalcofamily Male
## 1465 Not very happy unhappy No non_alco_nonalcofamily Male
## 1466 Fairly happy happy No non_alco_nonalcofamily Male
## 1467 Fairly happy happy No non_alco_nonalcofamily Male
## 1468 Fairly happy happy No non_alco_nonalcofamily Male
## 1469 Fairly happy happy No non_alco_nonalcofamily Male
## 1470 very happy happy No non_alco_nonalcofamily Female
## 1471 Fairly happy happy No non_alco_nonalcofamily Female
## 1472 Fairly happy happy No non_alco_nonalcofamily Female
## 1473 very happy happy No non_alco_nonalcofamily Male
## 1474 Fairly happy happy No non_alco_nonalcofamily Female
## 1475 very happy happy No non_alco_nonalcofamily Female
## 1476 Not very happy unhappy No non_alco_nonalcofamily Male
## 1477 Fairly happy happy No nonalco_alcofamily Female
## 1478 Fairly happy happy No non_alco_nonalcofamily Female
## 1479 Fairly happy happy Yes alco_nonalcofamily Male
## 1480 Fairly happy happy No nonalco_alcofamily Male
## 1481 Fairly happy happy No non_alco_nonalcofamily Male
## 1482 Fairly happy happy No non_alco_nonalcofamily Female
## 1483 Fairly happy happy No non_alco_nonalcofamily Female
## 1484 Fairly happy happy No non_alco_nonalcofamily Male
## 1485 very happy happy No non_alco_nonalcofamily Male
## 1486 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1487 very happy happy No non_alco_nonalcofamily Female
## 1488 very happy happy No non_alco_nonalcofamily Female
## 1489 Fairly happy happy No non_alco_nonalcofamily Male
## 1490 Fairly happy happy No non_alco_nonalcofamily Female
## 1491 Fairly happy happy No nonalco_alcofamily Female
## 1492 Not very happy unhappy No non_alco_nonalcofamily Female
## 1493 Fairly happy happy No non_alco_nonalcofamily Female
## 1494 Fairly happy happy No non_alco_nonalcofamily Female
## 1495 Fairly happy happy Yes alco_nonalcofamily Female
## 1496 Not very happy unhappy No non_alco_nonalcofamily Female
## 1497 Not very happy unhappy No non_alco_nonalcofamily Male
## 1498 Not very happy unhappy No non_alco_nonalcofamily Male
## 1499 Fairly happy happy No nonalco_alcofamily Female
## 1500 Fairly happy happy No nonalco_alcofamily Female
## 1501 Not at all happy unhappy No nonalco_alcofamily Male
## 1502 Fairly happy happy No non_alco_nonalcofamily Female
## 1503 Not very happy unhappy No non_alco_nonalcofamily Female
## 1504 Not very happy unhappy No non_alco_nonalcofamily Female
## 1505 very happy happy No non_alco_nonalcofamily Female
## 1506 Not at all happy unhappy No non_alco_nonalcofamily Female
## 1507 very happy happy No nonalco_alcofamily Female
## 1508 Not very happy unhappy No non_alco_nonalcofamily Male
## 1509 Fairly happy happy No non_alco_nonalcofamily Male
## 1510 Fairly happy happy No non_alco_nonalcofamily Male
## 1511 very happy happy No non_alco_nonalcofamily Female
## 1512 very happy happy No non_alco_nonalcofamily Female
## 1513 very happy happy No nonalco_alcofamily Female
## 1514 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1515 Not very happy unhappy No non_alco_nonalcofamily Male
## 1516 very happy happy No non_alco_nonalcofamily Male
## 1517 Not very happy unhappy No non_alco_nonalcofamily Female
## 1518 Fairly happy happy No non_alco_nonalcofamily Male
## 1519 very happy happy No non_alco_nonalcofamily Male
## 1520 Fairly happy happy No non_alco_nonalcofamily Female
## 1521 Fairly happy happy No non_alco_nonalcofamily Female
## 1522 Fairly happy happy No non_alco_nonalcofamily Male
## 1523 Not very happy unhappy No non_alco_nonalcofamily Male
## 1524 Fairly happy happy No non_alco_nonalcofamily Male
## 1525 Not very happy unhappy No nonalco_alcofamily Female
## 1526 Not very happy unhappy No nonalco_alcofamily Female
## 1527 Fairly happy happy No nonalco_alcofamily Female
## 1528 Fairly happy happy No non_alco_nonalcofamily Female
## 1529 Fairly happy happy Yes alco_nonalcofamily Male
## 1530 Fairly happy happy No non_alco_nonalcofamily Female
## 1531 Fairly happy happy No non_alco_nonalcofamily Female
## 1532 Fairly happy happy No non_alco_nonalcofamily Female
## 1533 Fairly happy happy No nonalco_alcofamily Female
## 1534 Fairly happy happy No non_alco_nonalcofamily Female
## 1535 Not very happy unhappy No non_alco_nonalcofamily Male
## 1536 Fairly happy happy No non_alco_nonalcofamily Female
## 1537 Fairly happy happy No non_alco_nonalcofamily Male
## 1538 very happy happy No non_alco_nonalcofamily Male
## 1539 Fairly happy happy No nonalco_alcofamily Female
## 1540 Fairly happy happy No non_alco_nonalcofamily Female
## 1541 Fairly happy happy No non_alco_nonalcofamily Male
## 1542 very happy happy No nonalco_alcofamily Female
## 1543 Fairly happy happy No non_alco_nonalcofamily Male
## 1544 Fairly happy happy No non_alco_nonalcofamily Male
## 1545 Fairly happy happy No non_alco_nonalcofamily Male
## 1546 Fairly happy happy No non_alco_nonalcofamily Male
## 1547 Not very happy unhappy No non_alco_nonalcofamily Male
## 1548 very happy happy No non_alco_nonalcofamily Male
## 1549 Fairly happy happy No non_alco_nonalcofamily Male
## 1550 Fairly happy happy No non_alco_nonalcofamily Male
## 1551 Fairly happy happy No non_alco_nonalcofamily Female
## 1552 Fairly happy happy No non_alco_nonalcofamily Male
## 1553 Not very happy unhappy No non_alco_nonalcofamily Male
## 1554 Fairly happy happy No non_alco_nonalcofamily Male
## 1555 Fairly happy happy No non_alco_nonalcofamily Male
## 1556 Not very happy unhappy No nonalco_alcofamily Male
## 1557 very happy happy No non_alco_nonalcofamily Female
## 1558 Fairly happy happy No non_alco_nonalcofamily Female
## 1559 Fairly happy happy No non_alco_nonalcofamily Male
## 1560 Fairly happy happy No non_alco_nonalcofamily Female
## 1561 Fairly happy happy No non_alco_nonalcofamily Male
## 1562 Fairly happy happy No non_alco_nonalcofamily Female
## 1563 Fairly happy happy No non_alco_nonalcofamily Female
## 1564 Not very happy unhappy No nonalco_alcofamily Other
## 1565 Not very happy unhappy No non_alco_nonalcofamily Female
## 1566 Fairly happy happy No nonalco_alcofamily Female
## 1567 Not very happy unhappy No non_alco_nonalcofamily Female
## 1568 very happy happy No non_alco_nonalcofamily Male
## 1569 Fairly happy happy No nonalco_alcofamily Male
## 1570 Fairly happy happy No non_alco_nonalcofamily Male
## 1571 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1572 very happy happy No nonalco_alcofamily Female
## 1573 Fairly happy happy No non_alco_nonalcofamily Male
## 1574 Not very happy unhappy Yes alco_nonalcofamily Male
## 1575 Fairly happy happy No nonalco_alcofamily Male
## 1576 Not very happy unhappy No non_alco_nonalcofamily Male
## 1577 Fairly happy happy No non_alco_nonalcofamily Male
## 1578 Not very happy unhappy No non_alco_nonalcofamily Male
## 1579 Fairly happy happy No non_alco_nonalcofamily Female
## 1580 Fairly happy happy No non_alco_nonalcofamily Female
## 1581 Fairly happy happy No non_alco_nonalcofamily Male
## 1582 Fairly happy happy No non_alco_nonalcofamily Male
## 1583 Not very happy unhappy No non_alco_nonalcofamily Male
## 1584 Fairly happy happy No non_alco_nonalcofamily Female
## 1585 very happy happy No non_alco_nonalcofamily Female
## 1586 Not very happy unhappy No non_alco_nonalcofamily Male
## 1587 Fairly happy happy No non_alco_nonalcofamily Male
## 1588 Fairly happy happy No nonalco_alcofamily Female
## 1589 Not very happy unhappy No nonalco_alcofamily Female
## 1590 Not at all happy unhappy No nonalco_alcofamily Male
## 1591 Fairly happy happy No non_alco_nonalcofamily Male
## 1592 very happy happy No non_alco_nonalcofamily Male
## 1593 Not very happy unhappy No non_alco_nonalcofamily Male
## 1594 Not very happy unhappy No nonalco_alcofamily Female
## 1595 Not very happy unhappy No nonalco_alcofamily Female
## 1596 Fairly happy happy No non_alco_nonalcofamily Female
## 1597 Fairly happy happy No non_alco_nonalcofamily Male
## 1598 very happy happy No non_alco_nonalcofamily Male
## 1599 Fairly happy happy No non_alco_nonalcofamily Male
## 1600 Fairly happy happy No non_alco_nonalcofamily Female
## 1601 very happy happy No non_alco_nonalcofamily Male
## 1602 Fairly happy happy No non_alco_nonalcofamily Male
## 1603 Not very happy unhappy No non_alco_nonalcofamily Female
## 1604 Fairly happy happy No non_alco_nonalcofamily Female
## 1605 very happy happy No non_alco_nonalcofamily Female
## 1606 Fairly happy happy Yes alco_nonalcofamily Male
## 1607 Fairly happy happy No nonalco_alcofamily Female
## 1608 Fairly happy happy No non_alco_nonalcofamily Female
## 1609 very happy happy No non_alco_nonalcofamily Female
## 1610 Fairly happy happy No non_alco_nonalcofamily Male
## 1611 Fairly happy happy No non_alco_nonalcofamily Other
## 1612 very happy happy Yes alco_alcofamily Male
## 1613 Fairly happy happy No non_alco_nonalcofamily Male
## 1614 Fairly happy happy No non_alco_nonalcofamily Female
## 1615 Fairly happy happy No non_alco_nonalcofamily Male
## 1616 Fairly happy happy No non_alco_nonalcofamily Male
## 1617 very happy happy No non_alco_nonalcofamily Male
## 1618 very happy happy No non_alco_nonalcofamily Other
## 1619 very happy happy No non_alco_nonalcofamily Female
## 1620 very happy happy No non_alco_nonalcofamily Female
## 1621 Fairly happy happy No non_alco_nonalcofamily Male
## 1622 Fairly happy happy No non_alco_nonalcofamily Male
## 1623 very happy happy No non_alco_nonalcofamily Female
## 1624 very happy happy No non_alco_nonalcofamily Male
## 1625 very happy happy No non_alco_nonalcofamily Male
## 1626 very happy happy No non_alco_nonalcofamily Female
## 1627 Fairly happy happy No non_alco_nonalcofamily Female
## 1628 Not very happy unhappy No non_alco_nonalcofamily Female
## 1629 Not very happy unhappy No non_alco_nonalcofamily Male
## 1630 Fairly happy happy No nonalco_alcofamily Female
## 1631 Not very happy unhappy No non_alco_nonalcofamily Male
## 1632 Fairly happy happy No nonalco_alcofamily Male
## 1633 very happy happy No non_alco_nonalcofamily Male
## 1634 Not very happy unhappy No non_alco_nonalcofamily Female
## 1635 Fairly happy happy No non_alco_nonalcofamily Female
## 1636 Fairly happy happy Yes alco_alcofamily Female
## 1637 Fairly happy happy No non_alco_nonalcofamily Female
## 1638 Fairly happy happy No non_alco_nonalcofamily Female
## 1639 Fairly happy happy No nonalco_alcofamily Female
## 1640 Not very happy unhappy No non_alco_nonalcofamily Female
## 1641 very happy happy No non_alco_nonalcofamily Male
## 1642 Fairly happy happy No non_alco_nonalcofamily Female
## 1643 Fairly happy happy No non_alco_nonalcofamily Male
## 1644 Fairly happy happy No nonalco_alcofamily Male
## 1645 very happy happy No non_alco_nonalcofamily Male
## 1646 Fairly happy happy No non_alco_nonalcofamily Male
## 1647 Not very happy unhappy Yes alco_alcofamily Male
## 1648 Not very happy unhappy No non_alco_nonalcofamily Female
## 1649 Fairly happy happy No non_alco_nonalcofamily Female
## 1650 Fairly happy happy No non_alco_nonalcofamily Male
## 1651 Fairly happy happy No non_alco_nonalcofamily Female
## 1652 Not very happy unhappy Yes alco_alcofamily Male
## 1653 Fairly happy happy No non_alco_nonalcofamily Female
## 1654 very happy happy No non_alco_nonalcofamily Female
## 1655 Not very happy unhappy No non_alco_nonalcofamily Male
## 1656 very happy happy No non_alco_nonalcofamily Female
## 1657 Not very happy unhappy No non_alco_nonalcofamily Other
## 1658 Fairly happy happy No nonalco_alcofamily Male
## 1659 Not very happy unhappy No nonalco_alcofamily Female
## 1660 Not very happy unhappy No non_alco_nonalcofamily Male
## 1661 Fairly happy happy No non_alco_nonalcofamily Female
## 1662 Not very happy unhappy No non_alco_nonalcofamily Male
## 1663 Fairly happy happy No non_alco_nonalcofamily Female
## 1664 Fairly happy happy No non_alco_nonalcofamily Female
## 1665 Fairly happy happy Yes alco_alcofamily Female
## 1666 Fairly happy happy No non_alco_nonalcofamily Female
## 1667 very happy happy No non_alco_nonalcofamily Male
## 1668 Fairly happy happy No non_alco_nonalcofamily Female
## 1669 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1670 Fairly happy happy No non_alco_nonalcofamily Female
## 1671 Fairly happy happy No non_alco_nonalcofamily Female
## 1672 Fairly happy happy No non_alco_nonalcofamily Female
## 1673 Fairly happy happy No nonalco_alcofamily Female
## 1674 Not very happy unhappy No non_alco_nonalcofamily Female
## 1675 Fairly happy happy No non_alco_nonalcofamily Female
## 1676 Not very happy unhappy No non_alco_nonalcofamily Female
## 1677 Fairly happy happy No nonalco_alcofamily Male
## 1678 Fairly happy happy No non_alco_nonalcofamily Female
## 1679 Not at all happy unhappy Yes alco_alcofamily Male
## 1680 Fairly happy happy No non_alco_nonalcofamily Female
## 1681 Not very happy unhappy No nonalco_alcofamily Male
## 1682 Fairly happy happy No non_alco_nonalcofamily Male
## 1683 Fairly happy happy No nonalco_alcofamily Female
## 1684 Fairly happy happy No non_alco_nonalcofamily Female
## 1685 Fairly happy happy No non_alco_nonalcofamily Male
## 1686 very happy happy No non_alco_nonalcofamily Other
## 1687 Fairly happy happy No non_alco_nonalcofamily Male
## 1688 Fairly happy happy No non_alco_nonalcofamily Male
## 1689 Fairly happy happy No non_alco_nonalcofamily Female
## 1690 Fairly happy happy No non_alco_nonalcofamily Female
## 1691 Fairly happy happy No non_alco_nonalcofamily Male
## 1692 Not very happy unhappy No non_alco_nonalcofamily Male
## 1693 Fairly happy happy No non_alco_nonalcofamily Male
## 1694 Fairly happy happy No non_alco_nonalcofamily Male
## 1695 Fairly happy happy No nonalco_alcofamily Female
## 1696 Fairly happy happy No non_alco_nonalcofamily Female
## 1697 Fairly happy happy No non_alco_nonalcofamily Male
## 1698 Fairly happy happy No non_alco_nonalcofamily Male
## 1699 very happy happy No non_alco_nonalcofamily Female
## 1700 very happy happy Yes alco_nonalcofamily Male
## 1701 Fairly happy happy No non_alco_nonalcofamily Female
## 1702 Not at all happy unhappy No non_alco_nonalcofamily Other
## 1703 very happy happy No non_alco_nonalcofamily Female
## 1704 very happy happy No non_alco_nonalcofamily Male
## 1705 Fairly happy happy No non_alco_nonalcofamily Female
## 1706 Fairly happy happy No non_alco_nonalcofamily Male
## 1707 Fairly happy happy No non_alco_nonalcofamily Female
## 1708 Not very happy unhappy No nonalco_alcofamily Female
## 1709 Fairly happy happy No non_alco_nonalcofamily Male
## 1710 Fairly happy happy No non_alco_nonalcofamily Female
## 1711 Fairly happy happy No non_alco_nonalcofamily Male
## 1712 Fairly happy happy No non_alco_nonalcofamily Female
## 1713 Fairly happy happy No non_alco_nonalcofamily Female
## 1714 Fairly happy happy No non_alco_nonalcofamily Female
## 1715 Fairly happy happy No non_alco_nonalcofamily Female
## 1716 Fairly happy happy No non_alco_nonalcofamily Female
## 1717 Fairly happy happy No non_alco_nonalcofamily Male
## 1718 Not very happy unhappy No nonalco_alcofamily Female
## 1719 Fairly happy happy No non_alco_nonalcofamily Male
## 1720 Fairly happy happy No non_alco_nonalcofamily Male
## 1721 Fairly happy happy No non_alco_nonalcofamily Female
## 1722 Fairly happy happy No nonalco_alcofamily Female
## 1723 Not very happy unhappy No nonalco_alcofamily Female
## 1724 Fairly happy happy No non_alco_nonalcofamily Male
## 1725 Fairly happy happy No non_alco_nonalcofamily Male
## 1726 Not very happy unhappy No non_alco_nonalcofamily Female
## 1727 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1728 Not very happy unhappy No nonalco_alcofamily Male
## 1729 Not very happy unhappy No non_alco_nonalcofamily Male
## 1730 Fairly happy happy No nonalco_alcofamily Female
## 1731 Fairly happy happy No non_alco_nonalcofamily Female
## 1732 very happy happy No non_alco_nonalcofamily Male
## 1733 Fairly happy happy No non_alco_nonalcofamily Male
## 1734 Fairly happy happy No non_alco_nonalcofamily Female
## 1735 Fairly happy happy No non_alco_nonalcofamily Female
## 1736 Fairly happy happy No nonalco_alcofamily Male
## 1737 very happy happy No non_alco_nonalcofamily Male
## 1738 Fairly happy happy No nonalco_alcofamily Female
## 1739 Not very happy unhappy No non_alco_nonalcofamily Male
## 1740 Fairly happy happy No non_alco_nonalcofamily Male
## 1741 Fairly happy happy No non_alco_nonalcofamily Male
## 1742 Fairly happy happy No non_alco_nonalcofamily Female
## 1743 Fairly happy happy No nonalco_alcofamily Female
## 1744 Not very happy unhappy No non_alco_nonalcofamily Male
## 1745 Fairly happy happy No nonalco_alcofamily Female
## 1746 very happy happy No non_alco_nonalcofamily Male
## 1747 Fairly happy happy No non_alco_nonalcofamily Female
## 1748 very happy happy No non_alco_nonalcofamily Male
## 1749 Fairly happy happy No non_alco_nonalcofamily Female
## 1750 Fairly happy happy No nonalco_alcofamily Female
## 1751 very happy happy No nonalco_alcofamily Male
## 1752 Fairly happy happy No non_alco_nonalcofamily Male
## 1753 very happy happy No nonalco_alcofamily Female
## 1754 Fairly happy happy No non_alco_nonalcofamily Male
## 1755 Fairly happy happy No non_alco_nonalcofamily Female
## 1756 Fairly happy happy No non_alco_nonalcofamily Male
## 1757 very happy happy No non_alco_nonalcofamily Male
## 1758 Fairly happy happy No non_alco_nonalcofamily Male
## 1759 Fairly happy happy No non_alco_nonalcofamily Female
## 1760 Not very happy unhappy No non_alco_nonalcofamily Other
## 1761 Fairly happy happy No non_alco_nonalcofamily Female
## 1762 Fairly happy happy No nonalco_alcofamily Female
## 1763 Fairly happy happy No non_alco_nonalcofamily Female
## 1764 Fairly happy happy No non_alco_nonalcofamily Male
## 1765 very happy happy No non_alco_nonalcofamily Male
## 1766 Fairly happy happy No nonalco_alcofamily Male
## 1767 Fairly happy happy No non_alco_nonalcofamily Male
## 1768 Fairly happy happy No non_alco_nonalcofamily Female
## 1769 Fairly happy happy No nonalco_alcofamily Male
## 1770 Fairly happy happy No non_alco_nonalcofamily Female
## 1771 Fairly happy happy No nonalco_alcofamily Female
## 1772 Fairly happy happy No non_alco_nonalcofamily Male
## 1773 Not very happy unhappy No nonalco_alcofamily Female
## 1774 Fairly happy happy No non_alco_nonalcofamily Female
## 1775 Fairly happy happy No non_alco_nonalcofamily Female
## 1776 Fairly happy happy No non_alco_nonalcofamily Female
## 1777 Fairly happy happy No nonalco_alcofamily Female
## 1778 Fairly happy happy Yes alco_nonalcofamily Male
## 1779 Fairly happy happy No non_alco_nonalcofamily Female
## 1780 Fairly happy happy No nonalco_alcofamily Male
## 1781 Fairly happy happy No non_alco_nonalcofamily Male
## 1782 very happy happy No non_alco_nonalcofamily Female
## 1783 Fairly happy happy No non_alco_nonalcofamily Female
## 1784 Fairly happy happy No non_alco_nonalcofamily Female
## 1785 Fairly happy happy No non_alco_nonalcofamily Male
## 1786 Not very happy unhappy No non_alco_nonalcofamily Male
## 1787 Fairly happy happy No nonalco_alcofamily Female
## 1788 very happy happy No non_alco_nonalcofamily Male
## 1789 Fairly happy happy No non_alco_nonalcofamily Female
## 1790 Fairly happy happy No non_alco_nonalcofamily Female
## 1791 Fairly happy happy No non_alco_nonalcofamily Male
## 1792 very happy happy No non_alco_nonalcofamily Male
## 1793 very happy happy No non_alco_nonalcofamily Male
## 1794 very happy happy No nonalco_alcofamily Female
## 1795 Fairly happy happy No non_alco_nonalcofamily Female
## 1796 Fairly happy happy Yes alco_alcofamily Female
## 1797 Fairly happy happy No non_alco_nonalcofamily Female
## 1798 Fairly happy happy No nonalco_alcofamily Other
## 1799 Not very happy unhappy No non_alco_nonalcofamily Female
## 1800 very happy happy No non_alco_nonalcofamily Male
## 1801 very happy happy No non_alco_nonalcofamily Female
## 1802 Fairly happy happy No non_alco_nonalcofamily Female
## 1803 Not at all happy unhappy Yes alco_nonalcofamily Male
## 1804 Fairly happy happy No non_alco_nonalcofamily Female
## 1805 Fairly happy happy No nonalco_alcofamily Female
## 1806 Fairly happy happy No non_alco_nonalcofamily Other
## 1807 Not very happy unhappy No non_alco_nonalcofamily Female
## 1808 Fairly happy happy No non_alco_nonalcofamily Female
## 1809 very happy happy No nonalco_alcofamily Female
## 1810 Fairly happy happy No non_alco_nonalcofamily Female
## 1811 Fairly happy happy No non_alco_nonalcofamily Female
## 1812 Not very happy unhappy No non_alco_nonalcofamily Female
## 1813 Not very happy unhappy No non_alco_nonalcofamily Male
## 1814 very happy happy No non_alco_nonalcofamily Male
## 1815 Fairly happy happy No non_alco_nonalcofamily Female
## 1816 Fairly happy happy No nonalco_alcofamily Female
## 1817 very happy happy No non_alco_nonalcofamily Female
## 1818 Fairly happy happy No non_alco_nonalcofamily Female
## 1819 Fairly happy happy No non_alco_nonalcofamily Female
## 1820 very happy happy No non_alco_nonalcofamily Male
## 1821 Not very happy unhappy No non_alco_nonalcofamily Female
## 1822 Fairly happy happy No nonalco_alcofamily Female
## 1823 Fairly happy happy No non_alco_nonalcofamily Female
## 1824 very happy happy No non_alco_nonalcofamily Male
## 1825 Fairly happy happy No non_alco_nonalcofamily Male
## 1826 very happy happy No non_alco_nonalcofamily Male
## 1827 Fairly happy happy No non_alco_nonalcofamily Female
## 1828 Fairly happy happy No non_alco_nonalcofamily Female
## 1829 very happy happy No non_alco_nonalcofamily Male
## 1830 Fairly happy happy No non_alco_nonalcofamily Female
## 1831 Not very happy unhappy No non_alco_nonalcofamily Male
## 1832 very happy happy No non_alco_nonalcofamily Male
## 1833 Not very happy unhappy No non_alco_nonalcofamily Female
## 1834 very happy happy No nonalco_alcofamily Female
## 1835 Fairly happy happy No non_alco_nonalcofamily Female
## 1836 Fairly happy happy No nonalco_alcofamily Male
## 1837 Not very happy unhappy No non_alco_nonalcofamily Male
## 1838 Not very happy unhappy No non_alco_nonalcofamily Female
## 1839 Not very happy unhappy Yes alco_nonalcofamily Female
## 1840 Fairly happy happy No non_alco_nonalcofamily Female
## 1841 Fairly happy happy No non_alco_nonalcofamily Female
## 1842 Fairly happy happy No non_alco_nonalcofamily Female
## 1843 Fairly happy happy No non_alco_nonalcofamily Female
## 1844 very happy happy No non_alco_nonalcofamily Male
## 1845 Fairly happy happy No non_alco_nonalcofamily Male
## 1846 very happy happy No nonalco_alcofamily Male
## 1847 Fairly happy happy No non_alco_nonalcofamily Female
## 1848 very happy happy No nonalco_alcofamily Female
## 1849 very happy happy No non_alco_nonalcofamily Male
## 1850 Fairly happy happy No non_alco_nonalcofamily Female
## 1851 very happy happy No non_alco_nonalcofamily Female
## 1852 Fairly happy happy No non_alco_nonalcofamily Female
## 1853 Fairly happy happy No non_alco_nonalcofamily Female
## 1854 Fairly happy happy No non_alco_nonalcofamily Other
## 1855 Fairly happy happy No non_alco_nonalcofamily Female
## 1856 Fairly happy happy No non_alco_nonalcofamily Female
## 1857 Not very happy unhappy No nonalco_alcofamily Male
## 1858 Fairly happy happy No non_alco_nonalcofamily Male
## 1859 Fairly happy happy No nonalco_alcofamily Female
## 1860 Fairly happy happy No non_alco_nonalcofamily Male
## 1861 Not very happy unhappy No non_alco_nonalcofamily Male
## 1862 Not very happy unhappy No non_alco_nonalcofamily Male
## 1863 Not very happy unhappy No nonalco_alcofamily Male
## 1864 Fairly happy happy No non_alco_nonalcofamily Male
## 1865 Fairly happy happy No non_alco_nonalcofamily Female
## 1866 Fairly happy happy No nonalco_alcofamily Female
## 1867 Fairly happy happy No non_alco_nonalcofamily Female
## 1868 Fairly happy happy No non_alco_nonalcofamily Male
## 1869 Fairly happy happy No nonalco_alcofamily Male
## 1870 Fairly happy happy No non_alco_nonalcofamily Female
## 1871 Fairly happy happy No non_alco_nonalcofamily Male
## 1872 Fairly happy happy Yes alco_alcofamily Female
## 1873 very happy happy No non_alco_nonalcofamily Female
## 1874 very happy happy No nonalco_alcofamily Female
## 1875 Fairly happy happy No non_alco_nonalcofamily Female
## 1876 Fairly happy happy No non_alco_nonalcofamily Female
## 1877 Not at all happy unhappy No nonalco_alcofamily Female
## 1878 Not very happy unhappy Yes alco_nonalcofamily Female
## 1879 Fairly happy happy No non_alco_nonalcofamily Male
## 1880 Not very happy unhappy No non_alco_nonalcofamily Male
## 1881 Fairly happy happy No non_alco_nonalcofamily Male
## 1882 very happy happy No non_alco_nonalcofamily Male
## 1883 Fairly happy happy No non_alco_nonalcofamily Male
## 1884 Fairly happy happy No non_alco_nonalcofamily Female
## 1885 Not very happy unhappy No non_alco_nonalcofamily Male
## 1886 Fairly happy happy No non_alco_nonalcofamily Female
## 1887 Not very happy unhappy No nonalco_alcofamily Male
## 1888 Fairly happy happy No non_alco_nonalcofamily Female
## 1889 Not very happy unhappy No non_alco_nonalcofamily Female
## 1890 Fairly happy happy Yes alco_alcofamily Male
## 1891 Fairly happy happy No non_alco_nonalcofamily Female
## 1892 Fairly happy happy No non_alco_nonalcofamily Male
## 1893 Fairly happy happy No non_alco_nonalcofamily Female
## 1894 Not at all happy unhappy No non_alco_nonalcofamily Male
## 1895 Fairly happy happy No non_alco_nonalcofamily Female
## 1896 Fairly happy happy No non_alco_nonalcofamily Female
## 1897 Fairly happy happy No non_alco_nonalcofamily Female
## 1898 very happy happy No nonalco_alcofamily Male
## 1899 Not very happy unhappy No non_alco_nonalcofamily Male
## 1900 very happy happy No non_alco_nonalcofamily Female
## 1901 Fairly happy happy No non_alco_nonalcofamily Female
## 1902 Fairly happy happy No nonalco_alcofamily Female
## 1903 Not very happy unhappy No nonalco_alcofamily Female
## 1904 very happy happy No non_alco_nonalcofamily Male
## 1905 Fairly happy happy No nonalco_alcofamily Female
## 1906 Not very happy unhappy No nonalco_alcofamily Female
## 1907 Not very happy unhappy No non_alco_nonalcofamily Male
## 1908 Fairly happy happy No non_alco_nonalcofamily Female
## 1909 Fairly happy happy No non_alco_nonalcofamily Male
## 1910 Fairly happy happy No non_alco_nonalcofamily Female
## 1911 Fairly happy happy No nonalco_alcofamily Female
## 1912 Fairly happy happy No non_alco_nonalcofamily Male
## 1913 Fairly happy happy No non_alco_nonalcofamily Male
## 1914 Fairly happy happy No non_alco_nonalcofamily Male
## 1915 Not very happy unhappy No nonalco_alcofamily Male
## 1916 Fairly happy happy No non_alco_nonalcofamily Male
## 1917 Fairly happy happy No non_alco_nonalcofamily Male
## 1918 Not very happy unhappy No nonalco_alcofamily Female
## 1919 Fairly happy happy No nonalco_alcofamily Female
## 1920 very happy happy No non_alco_nonalcofamily Female
## 1921 Not very happy unhappy No non_alco_nonalcofamily Female
## 1922 very happy happy No nonalco_alcofamily Female
## 1923 Not very happy unhappy No nonalco_alcofamily Female
## 1924 Fairly happy happy No non_alco_nonalcofamily Male
## 1925 Fairly happy happy No non_alco_nonalcofamily Male
## 1926 Fairly happy happy No non_alco_nonalcofamily Male
## 1927 Not very happy unhappy No non_alco_nonalcofamily Male
## 1928 Not very happy unhappy No non_alco_nonalcofamily Male
## 1929 Fairly happy happy No non_alco_nonalcofamily Female
## 1930 very happy happy No nonalco_alcofamily Female
## 1931 Fairly happy happy No non_alco_nonalcofamily Male
## 1932 Fairly happy happy No non_alco_nonalcofamily Female
## 1933 Fairly happy happy No non_alco_nonalcofamily Female
## 1934 Fairly happy happy No nonalco_alcofamily Female
## 1935 Not very happy unhappy No non_alco_nonalcofamily Male
## 1936 Not very happy unhappy No non_alco_nonalcofamily Female
## 1937 Fairly happy happy No nonalco_alcofamily Female
## 1938 Not at all happy unhappy No non_alco_nonalcofamily Female
## age resi_population resi_region
## 1 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 2 36 - 45 years Over 80,000 inhabitants Uusimaa
## 3 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 4 46 - 55 years 30,000 - 80,000 inhabitants Pirkanmaa
## 5 36 - 45 years 8,000 - 30,000 inhabitants Pirkanmaa
## 6 46 - 55 years 4,000 - 8,000 inhabitants P�ij�t-H�me
## 7 Over 65 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 8 56 - 65 years Over 80,000 inhabitants Uusimaa
## 9 56 - 65 years Over 80,000 inhabitants Uusimaa
## 10 Over 65 years Over 80,000 inhabitants Satakunta
## 11 Over 65 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 12 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 13 Over 65 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 14 46 - 55 years Over 80,000 inhabitants Uusimaa
## 15 36 - 45 years 30,000 - 80,000 inhabitants Lapland
## 16 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 17 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 18 46 - 55 years Over 80,000 inhabitants Uusimaa
## 19 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 20 46 - 55 years Over 80,000 inhabitants Satakunta
## 21 36 - 45 years Over 80,000 inhabitants Uusimaa
## 22 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 23 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 24 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 25 56 - 65 years Over 80,000 inhabitants Uusimaa
## 26 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 27 36 - 45 years 8,000 - 30,000 inhabitants Uusimaa
## 28 46 - 55 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 29 36 - 45 years Over 80,000 inhabitants Varsinais-Suomi
## 30 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 31 46 - 55 years Over 80,000 inhabitants Uusimaa
## 32 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 33 46 - 55 years Under 4,000 inhabitants North Savo
## 34 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 35 56 - 65 years Over 80,000 inhabitants Uusimaa
## 36 Over 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 37 46 - 55 years 30,000 - 80,000 inhabitants Lapland
## 38 56 - 65 years Over 80,000 inhabitants Uusimaa
## 39 Over 65 years Over 80,000 inhabitants P�ij�t-H�me
## 40 Over 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 41 Over 65 years 8,000 - 30,000 inhabitants Uusimaa
## 42 Over 65 years Under 4,000 inhabitants North Karelia
## 43 46 - 55 years Under 4,000 inhabitants Pirkanmaa
## 44 36 - 45 years 8,000 - 30,000 inhabitants H�me
## 45 36 - 45 years Over 80,000 inhabitants Uusimaa
## 46 56 - 65 years Over 80,000 inhabitants North Savo
## 47 46 - 55 years 8,000 - 30,000 inhabitants Uusimaa
## 48 46 - 55 years Over 80,000 inhabitants North Savo
## 49 Over 65 years 8,000 - 30,000 inhabitants Lapland
## 50 56 - 65 years Over 80,000 inhabitants Uusimaa
## 51 56 - 65 years 8,000 - 30,000 inhabitants North Karelia
## 52 46 - 55 years Over 80,000 inhabitants Uusimaa
## 53 36 - 45 years 8,000 - 30,000 inhabitants Pirkanmaa
## 54 Over 65 years Over 80,000 inhabitants Uusimaa
## 55 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 56 46 - 55 years Over 80,000 inhabitants Uusimaa
## 57 Over 65 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 58 46 - 55 years Over 80,000 inhabitants Uusimaa
## 59 36 - 45 years 4,000 - 8,000 inhabitants Kymenlaakso
## 60 26 - 35 years Over 80,000 inhabitants Uusimaa
## 61 46 - 55 years Under 4,000 inhabitants H�me
## 62 46 - 55 years Under 4,000 inhabitants Uusimaa
## 63 Over 65 years Over 80,000 inhabitants Uusimaa
## 64 46 - 55 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 65 Over 65 years 4,000 - 8,000 inhabitants H�me
## 66 26 - 35 years Over 80,000 inhabitants Uusimaa
## 67 Over 65 years Over 80,000 inhabitants P�ij�t-H�me
## 68 56 - 65 years 8,000 - 30,000 inhabitants South Karelia
## 69 36 - 45 years 8,000 - 30,000 inhabitants Central Finland
## 70 46 - 55 years Over 80,000 inhabitants Uusimaa
## 71 46 - 55 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 72 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 73 46 - 55 years Over 80,000 inhabitants Uusimaa
## 74 26 - 35 years Over 80,000 inhabitants Uusimaa
## 75 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 76 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 77 Over 65 years Over 80,000 inhabitants Central Finland
## 78 36 - 45 years Over 80,000 inhabitants Uusimaa
## 79 Over 65 years 4,000 - 8,000 inhabitants South Savo
## 80 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 81 46 - 55 years Over 80,000 inhabitants Satakunta
## 82 46 - 55 years 4,000 - 8,000 inhabitants North Karelia
## 83 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 84 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 85 Over 65 years Over 80,000 inhabitants Uusimaa
## 86 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 87 46 - 55 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 88 Over 65 years Over 80,000 inhabitants Uusimaa
## 89 36 - 45 years 8,000 - 30,000 inhabitants North Karelia
## 90 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 91 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 92 36 - 45 years Over 80,000 inhabitants Uusimaa
## 93 56 - 65 years Over 80,000 inhabitants North Savo
## 94 56 - 65 years Over 80,000 inhabitants Uusimaa
## 95 36 - 45 years Over 80,000 inhabitants Uusimaa
## 96 Over 65 years Over 80,000 inhabitants Central Finland
## 97 36 - 45 years Over 80,000 inhabitants North Savo
## 98 36 - 45 years 30,000 - 80,000 inhabitants Pirkanmaa
## 99 46 - 55 years Over 80,000 inhabitants P�ij�t-H�me
## 100 36 - 45 years Over 80,000 inhabitants Satakunta
## 101 46 - 55 years Over 80,000 inhabitants Satakunta
## 102 46 - 55 years Over 80,000 inhabitants Uusimaa
## 103 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 104 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 105 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 106 46 - 55 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 107 56 - 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 108 56 - 65 years 8,000 - 30,000 inhabitants South Karelia
## 109 Over 65 years 4,000 - 8,000 inhabitants Central Finland
## 110 56 - 65 years 4,000 - 8,000 inhabitants Central Finland
## 111 Over 65 years Over 80,000 inhabitants Uusimaa
## 112 56 - 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 113 46 - 55 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 114 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 115 46 - 55 years 8,000 - 30,000 inhabitants Pohjanmaa (coastal Vaasa)
## 116 46 - 55 years Over 80,000 inhabitants North Savo
## 117 46 - 55 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 118 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 119 Over 65 years Under 4,000 inhabitants Central Finland
## 120 36 - 45 years Over 80,000 inhabitants North Savo
## 121 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 122 Over 65 years Over 80,000 inhabitants Uusimaa
## 123 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 124 Over 65 years 30,000 - 80,000 inhabitants Satakunta
## 125 46 - 55 years 30,000 - 80,000 inhabitants South Savo
## 126 Over 65 years Under 4,000 inhabitants South Savo
## 127 36 - 45 years 8,000 - 30,000 inhabitants Pirkanmaa
## 128 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 129 Over 65 years Under 4,000 inhabitants Southern Ostrobothnia
## 130 46 - 55 years Under 4,000 inhabitants Northern Ostrobothnia
## 131 36 - 45 years 30,000 - 80,000 inhabitants H�me
## 132 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 133 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 134 56 - 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 135 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 136 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 137 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 138 46 - 55 years 8,000 - 30,000 inhabitants Lapland
## 139 56 - 65 years 4,000 - 8,000 inhabitants Central Ostrobothnia
## 140 36 - 45 years Over 80,000 inhabitants Uusimaa
## 141 56 - 65 years 30,000 - 80,000 inhabitants Satakunta
## 142 36 - 45 years 30,000 - 80,000 inhabitants North Karelia
## 143 46 - 55 years Over 80,000 inhabitants Central Finland
## 144 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 145 56 - 65 years 4,000 - 8,000 inhabitants Varsinais-Suomi
## 146 36 - 45 years Over 80,000 inhabitants Uusimaa
## 147 56 - 65 years 8,000 - 30,000 inhabitants Uusimaa
## 148 Over 65 years 4,000 - 8,000 inhabitants Lapland
## 149 56 - 65 years Under 4,000 inhabitants Kainuu
## 150 36 - 45 years 8,000 - 30,000 inhabitants South Savo
## 151 36 - 45 years 8,000 - 30,000 inhabitants South Savo
## 152 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 153 Over 65 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 154 36 - 45 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 155 46 - 55 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 156 36 - 45 years 30,000 - 80,000 inhabitants South Karelia
## 157 36 - 45 years Over 80,000 inhabitants Uusimaa
## 158 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 159 26 - 35 years Over 80,000 inhabitants Uusimaa
## 160 36 - 45 years Over 80,000 inhabitants North Savo
## 161 Over 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 162 46 - 55 years Over 80,000 inhabitants Uusimaa
## 163 36 - 45 years 4,000 - 8,000 inhabitants H�me
## 164 26 - 35 years Over 80,000 inhabitants Uusimaa
## 165 36 - 45 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 166 56 - 65 years 30,000 - 80,000 inhabitants Northern Ostrobothnia
## 167 36 - 45 years 30,000 - 80,000 inhabitants H�me
## 168 Over 65 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 169 Over 65 years Over 80,000 inhabitants Uusimaa
## 170 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 171 26 - 35 years Over 80,000 inhabitants Uusimaa
## 172 36 - 45 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 173 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 174 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 175 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 176 46 - 55 years Over 80,000 inhabitants Uusimaa
## 177 36 - 45 years Under 4,000 inhabitants South Karelia
## 178 36 - 45 years Over 80,000 inhabitants Varsinais-Suomi
## 179 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 180 56 - 65 years Over 80,000 inhabitants Uusimaa
## 181 46 - 55 years 8,000 - 30,000 inhabitants Central Finland
## 182 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 183 Over 65 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 184 Over 65 years Under 4,000 inhabitants Varsinais-Suomi
## 185 56 - 65 years 30,000 - 80,000 inhabitants South Savo
## 186 Over 65 years Over 80,000 inhabitants Uusimaa
## 187 56 - 65 years 30,000 - 80,000 inhabitants South Savo
## 188 36 - 45 years 8,000 - 30,000 inhabitants H�me
## 189 Over 65 years 4,000 - 8,000 inhabitants Pohjanmaa (coastal Vaasa)
## 190 Over 65 years 8,000 - 30,000 inhabitants Uusimaa
## 191 46 - 55 years Over 80,000 inhabitants Uusimaa
## 192 36 - 45 years 4,000 - 8,000 inhabitants Central Ostrobothnia
## 193 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 194 56 - 65 years Over 80,000 inhabitants Kymenlaakso
## 195 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 196 36 - 45 years 30,000 - 80,000 inhabitants South Karelia
## 197 56 - 65 years 8,000 - 30,000 inhabitants North Karelia
## 198 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 199 46 - 55 years Over 80,000 inhabitants Uusimaa
## 200 46 - 55 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 201 56 - 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 202 36 - 45 years 30,000 - 80,000 inhabitants Pirkanmaa
## 203 36 - 45 years Over 80,000 inhabitants Uusimaa
## 204 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 205 Over 65 years 8,000 - 30,000 inhabitants Lapland
## 206 56 - 65 years Over 80,000 inhabitants North Savo
## 207 26 - 35 years 8,000 - 30,000 inhabitants North Savo
## 208 46 - 55 years 30,000 - 80,000 inhabitants South Savo
## 209 36 - 45 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 210 26 - 35 years Under 4,000 inhabitants North Karelia
## 211 Over 65 years 8,000 - 30,000 inhabitants Uusimaa
## 212 36 - 45 years Over 80,000 inhabitants Uusimaa
## 213 56 - 65 years Over 80,000 inhabitants Uusimaa
## 214 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 215 Over 65 years Over 80,000 inhabitants Uusimaa
## 216 Over 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 217 56 - 65 years Over 80,000 inhabitants Uusimaa
## 218 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 219 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 220 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 221 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 222 36 - 45 years Over 80,000 inhabitants Uusimaa
## 223 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 224 56 - 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 225 46 - 55 years 30,000 - 80,000 inhabitants H�me
## 226 36 - 45 years Over 80,000 inhabitants Uusimaa
## 227 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 228 Over 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 229 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 230 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 231 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 232 46 - 55 years Under 4,000 inhabitants Satakunta
## 233 46 - 55 years Over 80,000 inhabitants Satakunta
## 234 Over 65 years Over 80,000 inhabitants North Savo
## 235 26 - 35 years 30,000 - 80,000 inhabitants South Karelia
## 236 26 - 35 years Over 80,000 inhabitants Uusimaa
## 237 56 - 65 years Over 80,000 inhabitants North Savo
## 238 46 - 55 years Over 80,000 inhabitants Uusimaa
## 239 Over 65 years Under 4,000 inhabitants Varsinais-Suomi
## 240 26 - 35 years Over 80,000 inhabitants Uusimaa
## 241 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 242 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 243 46 - 55 years 4,000 - 8,000 inhabitants North Savo
## 244 Over 65 years Over 80,000 inhabitants Uusimaa
## 245 46 - 55 years Over 80,000 inhabitants Uusimaa
## 246 46 - 55 years Over 80,000 inhabitants Uusimaa
## 247 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 248 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 249 46 - 55 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 250 56 - 65 years 4,000 - 8,000 inhabitants Central Finland
## 251 Over 65 years 8,000 - 30,000 inhabitants Lapland
## 252 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 253 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 254 56 - 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 255 Over 65 years 8,000 - 30,000 inhabitants Satakunta
## 256 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 257 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 258 46 - 55 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 259 Over 65 years Over 80,000 inhabitants Central Finland
## 260 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 261 Over 65 years 8,000 - 30,000 inhabitants Central Finland
## 262 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 263 56 - 65 years 4,000 - 8,000 inhabitants South Savo
## 264 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 265 56 - 65 years 4,000 - 8,000 inhabitants South Savo
## 266 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 267 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 268 56 - 65 years 4,000 - 8,000 inhabitants North Karelia
## 269 Over 65 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 270 Over 65 years Under 4,000 inhabitants Pohjanmaa (coastal Vaasa)
## 271 36 - 45 years Over 80,000 inhabitants Varsinais-Suomi
## 272 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 273 Over 65 years Over 80,000 inhabitants Uusimaa
## 274 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 275 Over 65 years Under 4,000 inhabitants Southern Ostrobothnia
## 276 46 - 55 years Over 80,000 inhabitants Uusimaa
## 277 Over 65 years 4,000 - 8,000 inhabitants Central Finland
## 278 46 - 55 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 279 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 280 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 281 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 282 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 283 Over 65 years 8,000 - 30,000 inhabitants North Karelia
## 284 56 - 65 years Under 4,000 inhabitants Northern Ostrobothnia
## 285 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 286 36 - 45 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 287 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 288 56 - 65 years Under 4,000 inhabitants South Savo
## 289 56 - 65 years Over 80,000 inhabitants North Savo
## 290 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 291 46 - 55 years 30,000 - 80,000 inhabitants Lapland
## 292 56 - 65 years 8,000 - 30,000 inhabitants North Savo
## 293 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 294 26 - 35 years 30,000 - 80,000 inhabitants South Karelia
## 295 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 296 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 297 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 298 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 299 56 - 65 years Over 80,000 inhabitants Uusimaa
## 300 Over 65 years 8,000 - 30,000 inhabitants Kainuu
## 301 Over 65 years 8,000 - 30,000 inhabitants South Savo
## 302 Over 65 years Over 80,000 inhabitants Uusimaa
## 303 Over 65 years 4,000 - 8,000 inhabitants Varsinais-Suomi
## 304 Over 65 years 8,000 - 30,000 inhabitants Lapland
## 305 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 306 36 - 45 years 8,000 - 30,000 inhabitants Kainuu
## 307 36 - 45 years 8,000 - 30,000 inhabitants Kymenlaakso
## 308 26 - 35 years 30,000 - 80,000 inhabitants North Karelia
## 309 36 - 45 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 310 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 311 Over 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 312 36 - 45 years Over 80,000 inhabitants North Savo
## 313 Over 65 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 314 36 - 45 years Over 80,000 inhabitants Varsinais-Suomi
## 315 Over 65 years Over 80,000 inhabitants Satakunta
## 316 Over 65 years Under 4,000 inhabitants Satakunta
## 317 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 318 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 319 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 320 26 - 35 years Over 80,000 inhabitants Uusimaa
## 321 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 322 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 323 26 - 35 years 4,000 - 8,000 inhabitants Kainuu
## 324 46 - 55 years 8,000 - 30,000 inhabitants Pohjanmaa (coastal Vaasa)
## 325 26 - 35 years 30,000 - 80,000 inhabitants North Karelia
## 326 26 - 35 years Over 80,000 inhabitants Uusimaa
## 327 56 - 65 years 30,000 - 80,000 inhabitants North Karelia
## 328 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 329 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 330 36 - 45 years 8,000 - 30,000 inhabitants South Savo
## 331 Over 65 years Over 80,000 inhabitants North Savo
## 332 46 - 55 years Over 80,000 inhabitants North Savo
## 333 36 - 45 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 334 56 - 65 years Over 80,000 inhabitants Varsinais-Suomi
## 335 46 - 55 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 336 36 - 45 years Over 80,000 inhabitants Uusimaa
## 337 56 - 65 years Under 4,000 inhabitants Varsinais-Suomi
## 338 26 - 35 years Over 80,000 inhabitants Central Finland
## 339 56 - 65 years Over 80,000 inhabitants Central Finland
## 340 46 - 55 years 30,000 - 80,000 inhabitants Pirkanmaa
## 341 36 - 45 years 30,000 - 80,000 inhabitants South Karelia
## 342 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 343 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 344 46 - 55 years 8,000 - 30,000 inhabitants Kainuu
## 345 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 346 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 347 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 348 36 - 45 years Over 80,000 inhabitants Uusimaa
## 349 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 350 Over 65 years 30,000 - 80,000 inhabitants Lapland
## 351 56 - 65 years 4,000 - 8,000 inhabitants South Savo
## 352 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 353 46 - 55 years Over 80,000 inhabitants Central Finland
## 354 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 355 36 - 45 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 356 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 357 36 - 45 years 8,000 - 30,000 inhabitants Central Finland
## 358 46 - 55 years Over 80,000 inhabitants Uusimaa
## 359 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 360 36 - 45 years Over 80,000 inhabitants Central Finland
## 361 Over 65 years Over 80,000 inhabitants Uusimaa
## 362 36 - 45 years Under 4,000 inhabitants Pirkanmaa
## 363 56 - 65 years Over 80,000 inhabitants Satakunta
## 364 56 - 65 years Over 80,000 inhabitants Central Finland
## 365 56 - 65 years 8,000 - 30,000 inhabitants South Savo
## 366 36 - 45 years 4,000 - 8,000 inhabitants South Savo
## 367 56 - 65 years 8,000 - 30,000 inhabitants North Savo
## 368 56 - 65 years 30,000 - 80,000 inhabitants South Savo
## 369 36 - 45 years 8,000 - 30,000 inhabitants North Savo
## 370 46 - 55 years Over 80,000 inhabitants Uusimaa
## 371 Over 65 years 8,000 - 30,000 inhabitants H�me
## 372 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 373 Over 65 years Over 80,000 inhabitants Uusimaa
## 374 46 - 55 years 30,000 - 80,000 inhabitants Kainuu
## 375 56 - 65 years 8,000 - 30,000 inhabitants Satakunta
## 376 Over 65 years 4,000 - 8,000 inhabitants North Savo
## 377 36 - 45 years 30,000 - 80,000 inhabitants South Savo
## 378 46 - 55 years Over 80,000 inhabitants Uusimaa
## 379 56 - 65 years Over 80,000 inhabitants Varsinais-Suomi
## 380 46 - 55 years Over 80,000 inhabitants Uusimaa
## 381 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 382 46 - 55 years Over 80,000 inhabitants Uusimaa
## 383 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 384 Over 65 years Under 4,000 inhabitants North Savo
## 385 Over 65 years 30,000 - 80,000 inhabitants Lapland
## 386 Over 65 years Over 80,000 inhabitants North Savo
## 387 Over 65 years 8,000 - 30,000 inhabitants North Karelia
## 388 Over 65 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 389 Over 65 years Over 80,000 inhabitants Uusimaa
## 390 56 - 65 years Under 4,000 inhabitants Central Finland
## 391 46 - 55 years Over 80,000 inhabitants Central Finland
## 392 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 393 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 394 36 - 45 years Over 80,000 inhabitants Central Finland
## 395 Over 65 years Under 4,000 inhabitants Satakunta
## 396 Over 65 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 397 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 398 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 399 36 - 45 years 4,000 - 8,000 inhabitants Kymenlaakso
## 400 56 - 65 years 8,000 - 30,000 inhabitants North Savo
## 401 Over 65 years Under 4,000 inhabitants North Savo
## 402 46 - 55 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 403 56 - 65 years Over 80,000 inhabitants Varsinais-Suomi
## 404 56 - 65 years 8,000 - 30,000 inhabitants South Savo
## 405 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 406 56 - 65 years Under 4,000 inhabitants Pohjanmaa (coastal Vaasa)
## 407 Over 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 408 Over 65 years Over 80,000 inhabitants Uusimaa
## 409 Over 65 years 8,000 - 30,000 inhabitants South Savo
## 410 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 411 Over 65 years 8,000 - 30,000 inhabitants North Savo
## 412 26 - 35 years Over 80,000 inhabitants Central Finland
## 413 26 - 35 years 30,000 - 80,000 inhabitants North Karelia
## 414 Over 65 years 8,000 - 30,000 inhabitants Kainuu
## 415 Over 65 years Over 80,000 inhabitants Uusimaa
## 416 56 - 65 years 30,000 - 80,000 inhabitants Lapland
## 417 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 418 Over 65 years Over 80,000 inhabitants Uusimaa
## 419 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 420 36 - 45 years Over 80,000 inhabitants Uusimaa
## 421 Over 65 years 4,000 - 8,000 inhabitants Central Finland
## 422 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 423 Over 65 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 424 46 - 55 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 425 46 - 55 years 30,000 - 80,000 inhabitants Satakunta
## 426 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 427 36 - 45 years Over 80,000 inhabitants Uusimaa
## 428 Over 65 years Over 80,000 inhabitants Uusimaa
## 429 46 - 55 years 8,000 - 30,000 inhabitants Kymenlaakso
## 430 Over 65 years Under 4,000 inhabitants Northern Ostrobothnia
## 431 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 432 36 - 45 years Over 80,000 inhabitants Northern Ostrobothnia
## 433 36 - 45 years Over 80,000 inhabitants Uusimaa
## 434 Over 65 years 8,000 - 30,000 inhabitants Lapland
## 435 26 - 35 years Over 80,000 inhabitants Uusimaa
## 436 56 - 65 years 4,000 - 8,000 inhabitants H�me
## 437 Over 65 years Over 80,000 inhabitants Uusimaa
## 438 Over 65 years 30,000 - 80,000 inhabitants Lapland
## 439 Over 65 years Over 80,000 inhabitants Varsinais-Suomi
## 440 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 441 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 442 Over 65 years 8,000 - 30,000 inhabitants North Savo
## 443 Over 65 years Under 4,000 inhabitants Central Ostrobothnia
## 444 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 445 Over 65 years Under 4,000 inhabitants Central Finland
## 446 46 - 55 years Over 80,000 inhabitants Uusimaa
## 447 56 - 65 years Over 80,000 inhabitants Uusimaa
## 448 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 449 Over 65 years Over 80,000 inhabitants Varsinais-Suomi
## 450 36 - 45 years Over 80,000 inhabitants Uusimaa
## 451 36 - 45 years 8,000 - 30,000 inhabitants Central Finland
## 452 Over 65 years 8,000 - 30,000 inhabitants Central Finland
## 453 36 - 45 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 454 46 - 55 years Over 80,000 inhabitants Uusimaa
## 455 46 - 55 years 8,000 - 30,000 inhabitants North Savo
## 456 Over 65 years Over 80,000 inhabitants Uusimaa
## 457 36 - 45 years Over 80,000 inhabitants Uusimaa
## 458 36 - 45 years Over 80,000 inhabitants Uusimaa
## 459 Over 65 years Under 4,000 inhabitants Lapland
## 460 Over 65 years Over 80,000 inhabitants Varsinais-Suomi
## 461 Over 65 years Over 80,000 inhabitants Uusimaa
## 462 Over 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 463 Over 65 years 8,000 - 30,000 inhabitants Central Ostrobothnia
## 464 Over 65 years Over 80,000 inhabitants Uusimaa
## 465 56 - 65 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 466 56 - 65 years 4,000 - 8,000 inhabitants Central Ostrobothnia
## 467 56 - 65 years Under 4,000 inhabitants North Savo
## 468 26 - 35 years 4,000 - 8,000 inhabitants Satakunta
## 469 46 - 55 years 8,000 - 30,000 inhabitants North Karelia
## 470 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 471 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 472 36 - 45 years Over 80,000 inhabitants Northern Ostrobothnia
## 473 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 474 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 475 Over 65 years 4,000 - 8,000 inhabitants North Karelia
## 476 Over 65 years Over 80,000 inhabitants Uusimaa
## 477 56 - 65 years 4,000 - 8,000 inhabitants Central Finland
## 478 Over 65 years 8,000 - 30,000 inhabitants Lapland
## 479 56 - 65 years 30,000 - 80,000 inhabitants South Savo
## 480 46 - 55 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 481 Over 65 years 8,000 - 30,000 inhabitants Satakunta
## 482 Over 65 years Over 80,000 inhabitants Uusimaa
## 483 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 484 56 - 65 years 8,000 - 30,000 inhabitants Pohjanmaa (coastal Vaasa)
## 485 26 - 35 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 486 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 487 56 - 65 years Over 80,000 inhabitants Central Finland
## 488 56 - 65 years 8,000 - 30,000 inhabitants Uusimaa
## 489 56 - 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 490 Over 65 years Over 80,000 inhabitants Uusimaa
## 491 56 - 65 years Over 80,000 inhabitants Uusimaa
## 492 26 - 35 years Under 4,000 inhabitants Southern Ostrobothnia
## 493 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 494 56 - 65 years 4,000 - 8,000 inhabitants Central Finland
## 495 46 - 55 years 30,000 - 80,000 inhabitants Pirkanmaa
## 496 56 - 65 years 30,000 - 80,000 inhabitants Kainuu
## 497 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 498 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 499 26 - 35 years Under 4,000 inhabitants Central Finland
## 500 Over 65 years Under 4,000 inhabitants Kainuu
## 501 Over 65 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 502 Over 65 years Over 80,000 inhabitants North Savo
## 503 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 504 Over 65 years 30,000 - 80,000 inhabitants South Karelia
## 505 56 - 65 years 4,000 - 8,000 inhabitants North Karelia
## 506 56 - 65 years 8,000 - 30,000 inhabitants Uusimaa
## 507 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 508 56 - 65 years Over 80,000 inhabitants Varsinais-Suomi
## 509 26 - 35 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 510 56 - 65 years Over 80,000 inhabitants Varsinais-Suomi
## 511 Over 65 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 512 Over 65 years 8,000 - 30,000 inhabitants Central Finland
## 513 56 - 65 years Over 80,000 inhabitants Central Finland
## 514 26 - 35 years Over 80,000 inhabitants Uusimaa
## 515 46 - 55 years 8,000 - 30,000 inhabitants Central Ostrobothnia
## 516 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 517 36 - 45 years Over 80,000 inhabitants Uusimaa
## 518 56 - 65 years Over 80,000 inhabitants Uusimaa
## 519 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 520 56 - 65 years Over 80,000 inhabitants Central Finland
## 521 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 522 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 523 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 524 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 525 26 - 35 years Over 80,000 inhabitants North Karelia
## 526 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 527 Over 65 years Under 4,000 inhabitants Lapland
## 528 Over 65 years Over 80,000 inhabitants Central Finland
## 529 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 530 Over 65 years 30,000 - 80,000 inhabitants Satakunta
## 531 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 532 Over 65 years 30,000 - 80,000 inhabitants North Savo
## 533 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 534 46 - 55 years Under 4,000 inhabitants Northern Ostrobothnia
## 535 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 536 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 537 46 - 55 years Over 80,000 inhabitants Uusimaa
## 538 56 - 65 years Over 80,000 inhabitants Central Finland
## 539 Over 65 years Over 80,000 inhabitants Uusimaa
## 540 36 - 45 years Over 80,000 inhabitants Central Finland
## 541 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 542 Over 65 years Under 4,000 inhabitants Pirkanmaa
## 543 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 544 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 545 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 546 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 547 26 - 35 years Over 80,000 inhabitants Uusimaa
## 548 56 - 65 years 8,000 - 30,000 inhabitants North Karelia
## 549 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 550 56 - 65 years 4,000 - 8,000 inhabitants Lapland
## 551 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 552 36 - 45 years Over 80,000 inhabitants Uusimaa
## 553 Over 65 years Under 4,000 inhabitants Pohjanmaa (coastal Vaasa)
## 554 Over 65 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 555 56 - 65 years Under 4,000 inhabitants Southern Ostrobothnia
## 556 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 557 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 558 36 - 45 years Over 80,000 inhabitants Central Finland
## 559 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 560 Over 65 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 561 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 562 Over 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 563 56 - 65 years Over 80,000 inhabitants Satakunta
## 564 36 - 45 years Over 80,000 inhabitants Uusimaa
## 565 56 - 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 566 56 - 65 years 4,000 - 8,000 inhabitants Central Ostrobothnia
## 567 Over 65 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 568 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 569 Over 65 years 30,000 - 80,000 inhabitants Lapland
## 570 36 - 45 years 30,000 - 80,000 inhabitants South Savo
## 571 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 572 Over 65 years 4,000 - 8,000 inhabitants South Karelia
## 573 56 - 65 years Over 80,000 inhabitants Uusimaa
## 574 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 575 Over 65 years 4,000 - 8,000 inhabitants Pirkanmaa
## 576 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 577 46 - 55 years Over 80,000 inhabitants Uusimaa
## 578 36 - 45 years Over 80,000 inhabitants Uusimaa
## 579 Over 65 years 30,000 - 80,000 inhabitants South Karelia
## 580 Over 65 years 8,000 - 30,000 inhabitants South Savo
## 581 56 - 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 582 Over 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 583 36 - 45 years 30,000 - 80,000 inhabitants Northern Ostrobothnia
## 584 Over 65 years Over 80,000 inhabitants Uusimaa
## 585 Over 65 years Over 80,000 inhabitants Uusimaa
## 586 Over 65 years Under 4,000 inhabitants Southern Ostrobothnia
## 587 56 - 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 588 36 - 45 years 30,000 - 80,000 inhabitants South Savo
## 589 36 - 45 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 590 Over 65 years Over 80,000 inhabitants Uusimaa
## 591 56 - 65 years Under 4,000 inhabitants South Karelia
## 592 56 - 65 years Under 4,000 inhabitants South Savo
## 593 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 594 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 595 46 - 55 years 8,000 - 30,000 inhabitants Lapland
## 596 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 597 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 598 Over 65 years Under 4,000 inhabitants Northern Ostrobothnia
## 599 56 - 65 years 4,000 - 8,000 inhabitants Kainuu
## 600 Over 65 years Under 4,000 inhabitants Lapland
## 601 36 - 45 years Under 4,000 inhabitants Kainuu
## 602 46 - 55 years 8,000 - 30,000 inhabitants North Karelia
## 603 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 604 56 - 65 years Over 80,000 inhabitants Uusimaa
## 605 56 - 65 years Over 80,000 inhabitants North Savo
## 606 46 - 55 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 607 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 608 46 - 55 years Over 80,000 inhabitants Uusimaa
## 609 Over 65 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 610 Over 65 years 30,000 - 80,000 inhabitants Lapland
## 611 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 612 26 - 35 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 613 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 614 26 - 35 years Over 80,000 inhabitants Uusimaa
## 615 Over 65 years Over 80,000 inhabitants Uusimaa
## 616 26 - 35 years Over 80,000 inhabitants Uusimaa
## 617 26 - 35 years 8,000 - 30,000 inhabitants Pirkanmaa
## 618 26 - 35 years Over 80,000 inhabitants Uusimaa
## 619 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 620 26 - 35 years Over 80,000 inhabitants Central Finland
## 621 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 622 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 623 26 - 35 years 8,000 - 30,000 inhabitants Satakunta
## 624 Over 65 years Over 80,000 inhabitants Uusimaa
## 625 46 - 55 years Over 80,000 inhabitants Uusimaa
## 626 Over 65 years 8,000 - 30,000 inhabitants H�me
## 627 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 628 Over 65 years 8,000 - 30,000 inhabitants Satakunta
## 629 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 630 46 - 55 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 631 Over 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 632 26 - 35 years Over 80,000 inhabitants Uusimaa
## 633 26 - 35 years Over 80,000 inhabitants Uusimaa
## 634 36 - 45 years Over 80,000 inhabitants Uusimaa
## 635 26 - 35 years Over 80,000 inhabitants Uusimaa
## 636 Over 65 years 8,000 - 30,000 inhabitants North Savo
## 637 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 638 18 - 25 years Over 80,000 inhabitants Uusimaa
## 639 56 - 65 years 4,000 - 8,000 inhabitants Pohjanmaa (coastal Vaasa)
## 640 46 - 55 years Over 80,000 inhabitants Uusimaa
## 641 26 - 35 years Over 80,000 inhabitants Uusimaa
## 642 26 - 35 years Over 80,000 inhabitants Uusimaa
## 643 18 - 25 years Over 80,000 inhabitants North Savo
## 644 56 - 65 years Under 4,000 inhabitants P�ij�t-H�me
## 645 46 - 55 years Over 80,000 inhabitants Uusimaa
## 646 26 - 35 years 4,000 - 8,000 inhabitants Pirkanmaa
## 647 56 - 65 years 30,000 - 80,000 inhabitants North Savo
## 648 26 - 35 years Over 80,000 inhabitants Uusimaa
## 649 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 650 26 - 35 years 4,000 - 8,000 inhabitants Uusimaa
## 651 26 - 35 years Over 80,000 inhabitants Uusimaa
## 652 Over 65 years 8,000 - 30,000 inhabitants North Karelia
## 653 26 - 35 years Over 80,000 inhabitants Central Finland
## 654 18 - 25 years Over 80,000 inhabitants Uusimaa
## 655 26 - 35 years Over 80,000 inhabitants Uusimaa
## 656 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 657 26 - 35 years 8,000 - 30,000 inhabitants Kainuu
## 658 46 - 55 years Over 80,000 inhabitants Uusimaa
## 659 56 - 65 years 4,000 - 8,000 inhabitants Satakunta
## 660 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 661 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 662 36 - 45 years 8,000 - 30,000 inhabitants H�me
## 663 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 664 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 665 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 666 Over 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 667 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 668 Over 65 years 8,000 - 30,000 inhabitants Uusimaa
## 669 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 670 Over 65 years Over 80,000 inhabitants Uusimaa
## 671 Over 65 years Over 80,000 inhabitants Uusimaa
## 672 Over 65 years 30,000 - 80,000 inhabitants Satakunta
## 673 Over 65 years Over 80,000 inhabitants Uusimaa
## 674 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 675 26 - 35 years Over 80,000 inhabitants Uusimaa
## 676 18 - 25 years 4,000 - 8,000 inhabitants South Savo
## 677 26 - 35 years Over 80,000 inhabitants Uusimaa
## 678 18 - 25 years Over 80,000 inhabitants P�ij�t-H�me
## 679 56 - 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 680 56 - 65 years Over 80,000 inhabitants Uusimaa
## 681 26 - 35 years Over 80,000 inhabitants Uusimaa
## 682 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 683 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 684 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 685 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 686 46 - 55 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 687 Over 65 years 8,000 - 30,000 inhabitants North Karelia
## 688 36 - 45 years Over 80,000 inhabitants Central Finland
## 689 56 - 65 years Over 80,000 inhabitants Uusimaa
## 690 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 691 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 692 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 693 Over 65 years Over 80,000 inhabitants North Savo
## 694 36 - 45 years 8,000 - 30,000 inhabitants Uusimaa
## 695 Over 65 years Over 80,000 inhabitants North Savo
## 696 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 697 Over 65 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 698 Over 65 years Over 80,000 inhabitants Central Finland
## 699 56 - 65 years Over 80,000 inhabitants Uusimaa
## 700 Over 65 years Under 4,000 inhabitants North Savo
## 701 36 - 45 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 702 46 - 55 years Over 80,000 inhabitants Central Finland
## 703 56 - 65 years Over 80,000 inhabitants North Savo
## 704 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 705 18 - 25 years Over 80,000 inhabitants Central Finland
## 706 Over 65 years Under 4,000 inhabitants P�ij�t-H�me
## 707 56 - 65 years Over 80,000 inhabitants P�ij�t-H�me
## 708 46 - 55 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 709 46 - 55 years 8,000 - 30,000 inhabitants South Savo
## 710 26 - 35 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 711 Over 65 years Over 80,000 inhabitants Uusimaa
## 712 Over 65 years 30,000 - 80,000 inhabitants Kainuu
## 713 Over 65 years 4,000 - 8,000 inhabitants South Savo
## 714 Over 65 years Over 80,000 inhabitants Uusimaa
## 715 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 716 Over 65 years 8,000 - 30,000 inhabitants North Savo
## 717 56 - 65 years 30,000 - 80,000 inhabitants North Karelia
## 718 36 - 45 years 8,000 - 30,000 inhabitants H�me
## 719 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 720 56 - 65 years 8,000 - 30,000 inhabitants South Karelia
## 721 56 - 65 years 30,000 - 80,000 inhabitants Lapland
## 722 26 - 35 years 30,000 - 80,000 inhabitants Pirkanmaa
## 723 36 - 45 years 30,000 - 80,000 inhabitants North Karelia
## 724 Over 65 years Over 80,000 inhabitants Uusimaa
## 725 56 - 65 years 8,000 - 30,000 inhabitants North Karelia
## 726 36 - 45 years Over 80,000 inhabitants Uusimaa
## 727 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 728 36 - 45 years Over 80,000 inhabitants Uusimaa
## 729 26 - 35 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 730 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 731 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 732 Over 65 years Under 4,000 inhabitants North Savo
## 733 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 734 Over 65 years Over 80,000 inhabitants North Savo
## 735 36 - 45 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 736 56 - 65 years Under 4,000 inhabitants Pirkanmaa
## 737 Over 65 years 8,000 - 30,000 inhabitants Satakunta
## 738 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 739 Over 65 years Over 80,000 inhabitants North Savo
## 740 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 741 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 742 Over 65 years 30,000 - 80,000 inhabitants Satakunta
## 743 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 744 46 - 55 years Over 80,000 inhabitants Uusimaa
## 745 46 - 55 years Over 80,000 inhabitants Uusimaa
## 746 26 - 35 years Over 80,000 inhabitants Uusimaa
## 747 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 748 Over 65 years Over 80,000 inhabitants Uusimaa
## 749 Over 65 years Over 80,000 inhabitants Varsinais-Suomi
## 750 Over 65 years 30,000 - 80,000 inhabitants Satakunta
## 751 18 - 25 years Over 80,000 inhabitants Uusimaa
## 752 Over 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 753 26 - 35 years Over 80,000 inhabitants Central Finland
## 754 56 - 65 years Under 4,000 inhabitants North Savo
## 755 Over 65 years Under 4,000 inhabitants Northern Ostrobothnia
## 756 36 - 45 years 8,000 - 30,000 inhabitants North Savo
## 757 36 - 45 years Over 80,000 inhabitants Uusimaa
## 758 56 - 65 years 4,000 - 8,000 inhabitants North Savo
## 759 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 760 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 761 Over 65 years Over 80,000 inhabitants Satakunta
## 762 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 763 36 - 45 years Over 80,000 inhabitants North Savo
## 764 56 - 65 years Over 80,000 inhabitants Uusimaa
## 765 Over 65 years Over 80,000 inhabitants Central Finland
## 766 46 - 55 years Over 80,000 inhabitants North Savo
## 767 26 - 35 years Over 80,000 inhabitants Uusimaa
## 768 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 769 36 - 45 years 8,000 - 30,000 inhabitants Central Ostrobothnia
## 770 Over 65 years Under 4,000 inhabitants Southern Ostrobothnia
## 771 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 772 Over 65 years 8,000 - 30,000 inhabitants South Savo
## 773 26 - 35 years Over 80,000 inhabitants Uusimaa
## 774 46 - 55 years Over 80,000 inhabitants North Savo
## 775 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 776 46 - 55 years 8,000 - 30,000 inhabitants South Savo
## 777 56 - 65 years 8,000 - 30,000 inhabitants Uusimaa
## 778 26 - 35 years Over 80,000 inhabitants Uusimaa
## 779 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 780 36 - 45 years Over 80,000 inhabitants Lapland
## 781 26 - 35 years Under 4,000 inhabitants Central Ostrobothnia
## 782 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 783 Over 65 years 30,000 - 80,000 inhabitants Satakunta
## 784 Over 65 years 4,000 - 8,000 inhabitants Uusimaa
## 785 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 786 Over 65 years 4,000 - 8,000 inhabitants Varsinais-Suomi
## 787 Over 65 years Over 80,000 inhabitants Central Finland
## 788 26 - 35 years Over 80,000 inhabitants Uusimaa
## 789 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 790 Over 65 years Over 80,000 inhabitants Varsinais-Suomi
## 791 Over 65 years Over 80,000 inhabitants Uusimaa
## 792 36 - 45 years 30,000 - 80,000 inhabitants North Karelia
## 793 36 - 45 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 794 36 - 45 years Over 80,000 inhabitants Uusimaa
## 795 18 - 25 years Over 80,000 inhabitants Uusimaa
## 796 56 - 65 years Under 4,000 inhabitants Southern Ostrobothnia
## 797 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 798 Over 65 years 4,000 - 8,000 inhabitants Uusimaa
## 799 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 800 18 - 25 years 4,000 - 8,000 inhabitants Varsinais-Suomi
## 801 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 802 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 803 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 804 Over 65 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 805 56 - 65 years Under 4,000 inhabitants North Savo
## 806 Over 65 years Over 80,000 inhabitants Uusimaa
## 807 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 808 26 - 35 years Over 80,000 inhabitants Central Finland
## 809 Over 65 years Over 80,000 inhabitants P�ij�t-H�me
## 810 18 - 25 years 8,000 - 30,000 inhabitants Pirkanmaa
## 811 26 - 35 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 812 36 - 45 years Over 80,000 inhabitants Uusimaa
## 813 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 814 56 - 65 years Under 4,000 inhabitants South Savo
## 815 26 - 35 years 8,000 - 30,000 inhabitants Satakunta
## 816 26 - 35 years Over 80,000 inhabitants Uusimaa
## 817 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 818 46 - 55 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 819 Over 65 years Over 80,000 inhabitants Uusimaa
## 820 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 821 Over 65 years Over 80,000 inhabitants Uusimaa
## 822 Over 65 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 823 46 - 55 years 4,000 - 8,000 inhabitants Lapland
## 824 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 825 26 - 35 years Over 80,000 inhabitants Uusimaa
## 826 36 - 45 years Over 80,000 inhabitants Uusimaa
## 827 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 828 36 - 45 years 4,000 - 8,000 inhabitants Uusimaa
## 829 Over 65 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 830 26 - 35 years Over 80,000 inhabitants Uusimaa
## 831 36 - 45 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 832 26 - 35 years Over 80,000 inhabitants Uusimaa
## 833 26 - 35 years Over 80,000 inhabitants Uusimaa
## 834 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 835 56 - 65 years 4,000 - 8,000 inhabitants Central Finland
## 836 26 - 35 years 30,000 - 80,000 inhabitants Pirkanmaa
## 837 46 - 55 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 838 Over 65 years Over 80,000 inhabitants Satakunta
## 839 Over 65 years Over 80,000 inhabitants Uusimaa
## 840 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 841 36 - 45 years Over 80,000 inhabitants Uusimaa
## 842 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 843 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 844 26 - 35 years 8,000 - 30,000 inhabitants Satakunta
## 845 26 - 35 years Over 80,000 inhabitants North Savo
## 846 Over 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 847 36 - 45 years 30,000 - 80,000 inhabitants North Savo
## 848 Over 65 years 8,000 - 30,000 inhabitants North Savo
## 849 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 850 46 - 55 years 4,000 - 8,000 inhabitants Satakunta
## 851 26 - 35 years Over 80,000 inhabitants Uusimaa
## 852 46 - 55 years 8,000 - 30,000 inhabitants North Savo
## 853 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 854 26 - 35 years Over 80,000 inhabitants Uusimaa
## 855 18 - 25 years Over 80,000 inhabitants Uusimaa
## 856 Over 65 years 8,000 - 30,000 inhabitants Satakunta
## 857 Over 65 years 30,000 - 80,000 inhabitants Lapland
## 858 26 - 35 years Over 80,000 inhabitants Uusimaa
## 859 Over 65 years Over 80,000 inhabitants North Savo
## 860 26 - 35 years 4,000 - 8,000 inhabitants Pirkanmaa
## 861 Over 65 years Over 80,000 inhabitants Central Finland
## 862 Over 65 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 863 Over 65 years Over 80,000 inhabitants Varsinais-Suomi
## 864 46 - 55 years 4,000 - 8,000 inhabitants Satakunta
## 865 Over 65 years Over 80,000 inhabitants North Savo
## 866 26 - 35 years 30,000 - 80,000 inhabitants South Savo
## 867 56 - 65 years 4,000 - 8,000 inhabitants Pirkanmaa
## 868 Over 65 years Over 80,000 inhabitants Central Finland
## 869 36 - 45 years Over 80,000 inhabitants Uusimaa
## 870 46 - 55 years Over 80,000 inhabitants Uusimaa
## 871 36 - 45 years Over 80,000 inhabitants Uusimaa
## 872 Over 65 years Over 80,000 inhabitants North Savo
## 873 56 - 65 years Over 80,000 inhabitants North Savo
## 874 56 - 65 years 8,000 - 30,000 inhabitants Kymenlaakso
## 875 Over 65 years 8,000 - 30,000 inhabitants Satakunta
## 876 56 - 65 years Over 80,000 inhabitants Varsinais-Suomi
## 877 46 - 55 years Over 80,000 inhabitants Satakunta
## 878 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 879 36 - 45 years Over 80,000 inhabitants North Savo
## 880 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 881 46 - 55 years Over 80,000 inhabitants North Karelia
## 882 Over 65 years Under 4,000 inhabitants Lapland
## 883 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 884 18 - 25 years Over 80,000 inhabitants Uusimaa
## 885 46 - 55 years Over 80,000 inhabitants Uusimaa
## 886 56 - 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 887 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 888 46 - 55 years 8,000 - 30,000 inhabitants South Savo
## 889 46 - 55 years Over 80,000 inhabitants Uusimaa
## 890 Over 65 years Under 4,000 inhabitants South Karelia
## 891 26 - 35 years Over 80,000 inhabitants Uusimaa
## 892 Over 65 years Over 80,000 inhabitants Uusimaa
## 893 56 - 65 years Over 80,000 inhabitants Satakunta
## 894 36 - 45 years 30,000 - 80,000 inhabitants Lapland
## 895 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 896 56 - 65 years Over 80,000 inhabitants Uusimaa
## 897 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 898 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 899 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 900 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 901 46 - 55 years Over 80,000 inhabitants Uusimaa
## 902 Over 65 years Under 4,000 inhabitants North Savo
## 903 46 - 55 years Under 4,000 inhabitants Pirkanmaa
## 904 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 905 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 906 Over 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 907 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 908 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 909 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 910 Over 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 911 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 912 Over 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 913 46 - 55 years Over 80,000 inhabitants Uusimaa
## 914 36 - 45 years Over 80,000 inhabitants Uusimaa
## 915 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 916 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 917 36 - 45 years Over 80,000 inhabitants Satakunta
## 918 56 - 65 years 4,000 - 8,000 inhabitants Pirkanmaa
## 919 46 - 55 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 920 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 921 56 - 65 years Under 4,000 inhabitants South Savo
## 922 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 923 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 924 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 925 56 - 65 years 30,000 - 80,000 inhabitants H�me
## 926 26 - 35 years 4,000 - 8,000 inhabitants Uusimaa
## 927 46 - 55 years Over 80,000 inhabitants Uusimaa
## 928 36 - 45 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 929 56 - 65 years Over 80,000 inhabitants Uusimaa
## 930 36 - 45 years 30,000 - 80,000 inhabitants Pirkanmaa
## 931 46 - 55 years Over 80,000 inhabitants Uusimaa
## 932 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 933 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 934 36 - 45 years 30,000 - 80,000 inhabitants Kymenlaakso
## 935 Over 65 years Under 4,000 inhabitants Central Finland
## 936 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 937 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 938 56 - 65 years 30,000 - 80,000 inhabitants Satakunta
## 939 56 - 65 years Over 80,000 inhabitants Uusimaa
## 940 36 - 45 years Over 80,000 inhabitants Uusimaa
## 941 Over 65 years Under 4,000 inhabitants Lapland
## 942 Over 65 years Over 80,000 inhabitants Central Finland
## 943 36 - 45 years Under 4,000 inhabitants Central Finland
## 944 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 945 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 946 36 - 45 years Over 80,000 inhabitants Uusimaa
## 947 36 - 45 years 4,000 - 8,000 inhabitants Lapland
## 948 Over 65 years 30,000 - 80,000 inhabitants Satakunta
## 949 36 - 45 years 8,000 - 30,000 inhabitants H�me
## 950 46 - 55 years 4,000 - 8,000 inhabitants Pohjanmaa (coastal Vaasa)
## 951 56 - 65 years Over 80,000 inhabitants Uusimaa
## 952 56 - 65 years Over 80,000 inhabitants North Savo
## 953 46 - 55 years 30,000 - 80,000 inhabitants Kymenlaakso
## 954 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 955 Over 65 years 8,000 - 30,000 inhabitants Central Finland
## 956 Over 65 years Over 80,000 inhabitants Central Finland
## 957 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 958 Over 65 years 4,000 - 8,000 inhabitants Pirkanmaa
## 959 Over 65 years Over 80,000 inhabitants Central Finland
## 960 56 - 65 years Over 80,000 inhabitants Uusimaa
## 961 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 962 56 - 65 years Over 80,000 inhabitants Uusimaa
## 963 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 964 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 965 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 966 Over 65 years 30,000 - 80,000 inhabitants South Karelia
## 967 Over 65 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 968 46 - 55 years Over 80,000 inhabitants Uusimaa
## 969 26 - 35 years Over 80,000 inhabitants P�ij�t-H�me
## 970 46 - 55 years Over 80,000 inhabitants North Savo
## 971 46 - 55 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 972 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 973 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 974 46 - 55 years Over 80,000 inhabitants P�ij�t-H�me
## 975 56 - 65 years 30,000 - 80,000 inhabitants Kainuu
## 976 46 - 55 years Over 80,000 inhabitants Uusimaa
## 977 Over 65 years Over 80,000 inhabitants Uusimaa
## 978 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 979 56 - 65 years Under 4,000 inhabitants Central Ostrobothnia
## 980 56 - 65 years 8,000 - 30,000 inhabitants South Savo
## 981 26 - 35 years 8,000 - 30,000 inhabitants Central Finland
## 982 36 - 45 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 983 56 - 65 years Over 80,000 inhabitants Uusimaa
## 984 Over 65 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 985 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 986 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 987 36 - 45 years Over 80,000 inhabitants Uusimaa
## 988 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 989 56 - 65 years 30,000 - 80,000 inhabitants H�me
## 990 26 - 35 years Over 80,000 inhabitants Central Finland
## 991 Over 65 years 30,000 - 80,000 inhabitants North Karelia
## 992 Over 65 years Under 4,000 inhabitants Southern Ostrobothnia
## 993 56 - 65 years Over 80,000 inhabitants North Savo
## 994 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 995 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 996 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 997 56 - 65 years 30,000 - 80,000 inhabitants Northern Ostrobothnia
## 998 Over 65 years 8,000 - 30,000 inhabitants H�me
## 999 Over 65 years 8,000 - 30,000 inhabitants Central Finland
## 1000 26 - 35 years Over 80,000 inhabitants Central Finland
## 1001 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1002 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 1003 Over 65 years 8,000 - 30,000 inhabitants Central Finland
## 1004 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1005 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1006 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1007 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1008 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 1009 Over 65 years Under 4,000 inhabitants Lapland
## 1010 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1011 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1012 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1013 26 - 35 years Over 80,000 inhabitants Central Finland
## 1014 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 1015 Over 65 years 8,000 - 30,000 inhabitants South Karelia
## 1016 Over 65 years Over 80,000 inhabitants Varsinais-Suomi
## 1017 56 - 65 years Under 4,000 inhabitants Lapland
## 1018 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 1019 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1020 56 - 65 years 30,000 - 80,000 inhabitants South Savo
## 1021 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1022 46 - 55 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 1023 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1024 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1025 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1026 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1027 46 - 55 years Under 4,000 inhabitants North Karelia
## 1028 56 - 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 1029 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1030 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1031 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1032 26 - 35 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 1033 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1034 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1035 56 - 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1036 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1037 46 - 55 years Over 80,000 inhabitants North Savo
## 1038 56 - 65 years Over 80,000 inhabitants Central Finland
## 1039 Over 65 years 30,000 - 80,000 inhabitants Lapland
## 1040 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1041 46 - 55 years 4,000 - 8,000 inhabitants Central Finland
## 1042 56 - 65 years Under 4,000 inhabitants Satakunta
## 1043 56 - 65 years 4,000 - 8,000 inhabitants Lapland
## 1044 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1045 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1046 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 1047 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1048 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1049 Over 65 years Over 80,000 inhabitants Central Finland
## 1050 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 1051 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 1052 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 1053 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1054 Over 65 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 1055 26 - 35 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 1056 46 - 55 years 30,000 - 80,000 inhabitants Kymenlaakso
## 1057 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1058 Over 65 years Over 80,000 inhabitants North Savo
## 1059 46 - 55 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1060 46 - 55 years 8,000 - 30,000 inhabitants North Karelia
## 1061 Over 65 years Over 80,000 inhabitants Uusimaa
## 1062 Over 65 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 1063 36 - 45 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 1064 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1065 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1066 36 - 45 years Over 80,000 inhabitants Northern Ostrobothnia
## 1067 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1068 Over 65 years Under 4,000 inhabitants Central Finland
## 1069 56 - 65 years 30,000 - 80,000 inhabitants Satakunta
## 1070 Over 65 years Over 80,000 inhabitants Lapland
## 1071 Over 65 years Over 80,000 inhabitants Central Finland
## 1072 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1073 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1074 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 1075 18 - 25 years 4,000 - 8,000 inhabitants Central Ostrobothnia
## 1076 Over 65 years Under 4,000 inhabitants Lapland
## 1077 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1078 36 - 45 years 8,000 - 30,000 inhabitants H�me
## 1079 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1080 46 - 55 years 8,000 - 30,000 inhabitants Lapland
## 1081 46 - 55 years 8,000 - 30,000 inhabitants Uusimaa
## 1082 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1083 36 - 45 years Under 4,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1084 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 1085 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1086 Over 65 years 30,000 - 80,000 inhabitants Kainuu
## 1087 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1088 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1089 Over 65 years 8,000 - 30,000 inhabitants North Savo
## 1090 36 - 45 years 8,000 - 30,000 inhabitants Kainuu
## 1091 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1092 Over 65 years Over 80,000 inhabitants Satakunta
## 1093 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1094 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1095 36 - 45 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1096 18 - 25 years 4,000 - 8,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1097 36 - 45 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1098 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 1099 Over 65 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 1100 18 - 25 years Over 80,000 inhabitants Northern Ostrobothnia
## 1101 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1102 Over 65 years Over 80,000 inhabitants Varsinais-Suomi
## 1103 26 - 35 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 1104 26 - 35 years 30,000 - 80,000 inhabitants Kymenlaakso
## 1105 56 - 65 years Over 80,000 inhabitants P�ij�t-H�me
## 1106 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1107 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1108 18 - 25 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1109 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 1110 36 - 45 years 8,000 - 30,000 inhabitants Kymenlaakso
## 1111 Over 65 years Over 80,000 inhabitants Uusimaa
## 1112 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1113 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 1114 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1115 Over 65 years 8,000 - 30,000 inhabitants Kainuu
## 1116 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1117 26 - 35 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1118 26 - 35 years 30,000 - 80,000 inhabitants Kymenlaakso
## 1119 Over 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1120 36 - 45 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1121 18 - 25 years 30,000 - 80,000 inhabitants South Karelia
## 1122 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1123 18 - 25 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1124 56 - 65 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 1125 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1126 Over 65 years Under 4,000 inhabitants Lapland
## 1127 56 - 65 years Under 4,000 inhabitants North Savo
## 1128 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1129 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1130 36 - 45 years 30,000 - 80,000 inhabitants North Savo
## 1131 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1132 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1133 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1134 18 - 25 years 30,000 - 80,000 inhabitants Lapland
## 1135 Over 65 years 4,000 - 8,000 inhabitants P�ij�t-H�me
## 1136 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1137 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1138 26 - 35 years 8,000 - 30,000 inhabitants Lapland
## 1139 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1140 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 1141 26 - 35 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1142 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1143 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1144 36 - 45 years 4,000 - 8,000 inhabitants P�ij�t-H�me
## 1145 46 - 55 years 8,000 - 30,000 inhabitants Lapland
## 1146 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 1147 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 1148 Over 65 years 8,000 - 30,000 inhabitants North Savo
## 1149 36 - 45 years 4,000 - 8,000 inhabitants Uusimaa
## 1150 Over 65 years Over 80,000 inhabitants Uusimaa
## 1151 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1152 18 - 25 years Over 80,000 inhabitants North Savo
## 1153 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1154 46 - 55 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 1155 36 - 45 years Under 4,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1156 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1157 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1158 46 - 55 years 4,000 - 8,000 inhabitants North Savo
## 1159 46 - 55 years Over 80,000 inhabitants Central Finland
## 1160 26 - 35 years 30,000 - 80,000 inhabitants Lapland
## 1161 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1162 26 - 35 years 8,000 - 30,000 inhabitants Uusimaa
## 1163 Over 65 years Over 80,000 inhabitants Uusimaa
## 1164 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1165 Over 65 years Over 80,000 inhabitants Central Finland
## 1166 Over 65 years 8,000 - 30,000 inhabitants H�me
## 1167 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 1168 18 - 25 years 30,000 - 80,000 inhabitants South Karelia
## 1169 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1170 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1171 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1172 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1173 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1174 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1175 36 - 45 years 8,000 - 30,000 inhabitants Central Finland
## 1176 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1177 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1178 Over 65 years 4,000 - 8,000 inhabitants North Savo
## 1179 Over 65 years 4,000 - 8,000 inhabitants Central Finland
## 1180 26 - 35 years Over 80,000 inhabitants Central Finland
## 1181 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 1182 36 - 45 years 4,000 - 8,000 inhabitants Kainuu
## 1183 Over 65 years Under 4,000 inhabitants Northern Ostrobothnia
## 1184 Over 65 years 8,000 - 30,000 inhabitants Satakunta
## 1185 36 - 45 years 30,000 - 80,000 inhabitants Satakunta
## 1186 26 - 35 years 8,000 - 30,000 inhabitants H�me
## 1187 36 - 45 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1188 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1189 36 - 45 years 30,000 - 80,000 inhabitants South Karelia
## 1190 56 - 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1191 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1192 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1193 36 - 45 years 4,000 - 8,000 inhabitants North Karelia
## 1194 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1195 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1196 Over 65 years 8,000 - 30,000 inhabitants South Savo
## 1197 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 1198 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1199 Over 65 years Over 80,000 inhabitants Uusimaa
## 1200 26 - 35 years 4,000 - 8,000 inhabitants North Karelia
## 1201 36 - 45 years Over 80,000 inhabitants Varsinais-Suomi
## 1202 36 - 45 years 30,000 - 80,000 inhabitants Lapland
## 1203 46 - 55 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1204 36 - 45 years 30,000 - 80,000 inhabitants North Karelia
## 1205 46 - 55 years Under 4,000 inhabitants Varsinais-Suomi
## 1206 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1207 Over 65 years 8,000 - 30,000 inhabitants Uusimaa
## 1208 56 - 65 years 8,000 - 30,000 inhabitants Satakunta
## 1209 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1210 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1211 56 - 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1212 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1213 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1214 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1215 36 - 45 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1216 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1217 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1218 26 - 35 years Over 80,000 inhabitants North Savo
## 1219 Over 65 years Over 80,000 inhabitants North Savo
## 1220 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1221 18 - 25 years Over 80,000 inhabitants H�me
## 1222 36 - 45 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1223 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 1224 46 - 55 years 30,000 - 80,000 inhabitants North Karelia
## 1225 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1226 18 - 25 years Over 80,000 inhabitants North Savo
## 1227 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1228 26 - 35 years Over 80,000 inhabitants Central Finland
## 1229 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1230 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1231 26 - 35 years 30,000 - 80,000 inhabitants South Savo
## 1232 36 - 45 years Under 4,000 inhabitants Southern Ostrobothnia
## 1233 36 - 45 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1234 26 - 35 years 8,000 - 30,000 inhabitants Central Finland
## 1235 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1236 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1237 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1238 18 - 25 years 8,000 - 30,000 inhabitants Central Finland
## 1239 26 - 35 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1240 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1241 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1242 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1243 56 - 65 years 30,000 - 80,000 inhabitants H�me
## 1244 46 - 55 years 8,000 - 30,000 inhabitants North Savo
## 1245 36 - 45 years 30,000 - 80,000 inhabitants H�me
## 1246 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1247 18 - 25 years 30,000 - 80,000 inhabitants Uusimaa
## 1248 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1249 56 - 65 years 4,000 - 8,000 inhabitants South Savo
## 1250 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1251 26 - 35 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 1252 46 - 55 years 4,000 - 8,000 inhabitants Central Finland
## 1253 56 - 65 years 8,000 - 30,000 inhabitants North Karelia
## 1254 56 - 65 years Over 80,000 inhabitants Satakunta
## 1255 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1256 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1257 56 - 65 years Over 80,000 inhabitants Satakunta
## 1258 26 - 35 years Over 80,000 inhabitants North Savo
## 1259 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 1260 46 - 55 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1261 Over 65 years 4,000 - 8,000 inhabitants North Karelia
## 1262 26 - 35 years 4,000 - 8,000 inhabitants H�me
## 1263 56 - 65 years Under 4,000 inhabitants North Savo
## 1264 26 - 35 years 8,000 - 30,000 inhabitants North Karelia
## 1265 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1266 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1267 46 - 55 years 8,000 - 30,000 inhabitants Central Finland
## 1268 46 - 55 years Over 80,000 inhabitants North Savo
## 1269 26 - 35 years Over 80,000 inhabitants North Savo
## 1270 56 - 65 years Under 4,000 inhabitants South Savo
## 1271 Over 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1272 Over 65 years Over 80,000 inhabitants Uusimaa
## 1273 46 - 55 years 8,000 - 30,000 inhabitants Satakunta
## 1274 46 - 55 years 4,000 - 8,000 inhabitants Kainuu
## 1275 Over 65 years Over 80,000 inhabitants North Savo
## 1276 46 - 55 years 30,000 - 80,000 inhabitants Satakunta
## 1277 Over 65 years Over 80,000 inhabitants Uusimaa
## 1278 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1279 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1280 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1281 Over 65 years Over 80,000 inhabitants Uusimaa
## 1282 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1283 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1284 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1285 Over 65 years Over 80,000 inhabitants Uusimaa
## 1286 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1287 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1288 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1289 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1290 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1291 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1292 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1293 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1294 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1295 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1296 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1297 Over 65 years Over 80,000 inhabitants Uusimaa
## 1298 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1299 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1300 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1301 Over 65 years Over 80,000 inhabitants Uusimaa
## 1302 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1303 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1304 Over 65 years Over 80,000 inhabitants Uusimaa
## 1305 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1306 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1307 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1308 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1309 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1310 Over 65 years Over 80,000 inhabitants Uusimaa
## 1311 56 - 65 years 4,000 - 8,000 inhabitants Central Finland
## 1312 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1313 Over 65 years Over 80,000 inhabitants Uusimaa
## 1314 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1315 Over 65 years Over 80,000 inhabitants Uusimaa
## 1316 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1317 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1318 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1319 46 - 55 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1320 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1321 36 - 45 years 4,000 - 8,000 inhabitants P�ij�t-H�me
## 1322 26 - 35 years Over 80,000 inhabitants P�ij�t-H�me
## 1323 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 1324 26 - 35 years 8,000 - 30,000 inhabitants Uusimaa
## 1325 36 - 45 years 8,000 - 30,000 inhabitants Uusimaa
## 1326 26 - 35 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 1327 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1328 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1329 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1330 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1331 Over 65 years Over 80,000 inhabitants Uusimaa
## 1332 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1333 46 - 55 years 8,000 - 30,000 inhabitants H�me
## 1334 56 - 65 years Over 80,000 inhabitants Varsinais-Suomi
## 1335 46 - 55 years Over 80,000 inhabitants Varsinais-Suomi
## 1336 26 - 35 years Under 4,000 inhabitants P�ij�t-H�me
## 1337 46 - 55 years 8,000 - 30,000 inhabitants Satakunta
## 1338 Over 65 years Over 80,000 inhabitants Pirkanmaa
## 1339 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 1340 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1341 26 - 35 years Under 4,000 inhabitants Central Finland
## 1342 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1343 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 1344 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 1345 18 - 25 years Over 80,000 inhabitants Northern Ostrobothnia
## 1346 36 - 45 years 8,000 - 30,000 inhabitants H�me
## 1347 36 - 45 years Over 80,000 inhabitants Satakunta
## 1348 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1349 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1350 36 - 45 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1351 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1352 36 - 45 years Under 4,000 inhabitants Varsinais-Suomi
## 1353 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1354 46 - 55 years Over 80,000 inhabitants Central Finland
## 1355 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1356 36 - 45 years 30,000 - 80,000 inhabitants Satakunta
## 1357 36 - 45 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1358 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1359 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 1360 36 - 45 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 1361 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1362 36 - 45 years Over 80,000 inhabitants Central Finland
## 1363 36 - 45 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1364 36 - 45 years Under 4,000 inhabitants Pirkanmaa
## 1365 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1366 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1367 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1368 46 - 55 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1369 46 - 55 years 8,000 - 30,000 inhabitants Central Finland
## 1370 26 - 35 years Over 80,000 inhabitants North Savo
## 1371 46 - 55 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 1372 46 - 55 years Over 80,000 inhabitants North Karelia
## 1373 26 - 35 years Over 80,000 inhabitants Central Finland
## 1374 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 1375 36 - 45 years 8,000 - 30,000 inhabitants Central Finland
## 1376 36 - 45 years 8,000 - 30,000 inhabitants Central Finland
## 1377 36 - 45 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 1378 Over 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1379 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1380 26 - 35 years Over 80,000 inhabitants Kymenlaakso
## 1381 26 - 35 years 4,000 - 8,000 inhabitants Central Finland
## 1382 18 - 25 years Under 4,000 inhabitants South Savo
## 1383 26 - 35 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1384 36 - 45 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 1385 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1386 56 - 65 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 1387 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 1388 56 - 65 years Over 80,000 inhabitants North Savo
## 1389 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1390 46 - 55 years 30,000 - 80,000 inhabitants South Savo
## 1391 36 - 45 years Over 80,000 inhabitants Central Finland
## 1392 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1393 36 - 45 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1394 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1395 26 - 35 years 8,000 - 30,000 inhabitants Lapland
## 1396 56 - 65 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 1397 36 - 45 years Over 80,000 inhabitants Northern Ostrobothnia
## 1398 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1399 36 - 45 years 8,000 - 30,000 inhabitants Lapland
## 1400 36 - 45 years 30,000 - 80,000 inhabitants Central Finland
## 1401 46 - 55 years 30,000 - 80,000 inhabitants South Savo
## 1402 Over 65 years 8,000 - 30,000 inhabitants Central Finland
## 1403 36 - 45 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1404 56 - 65 years 30,000 - 80,000 inhabitants Northern Ostrobothnia
## 1405 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1406 36 - 45 years Over 80,000 inhabitants Varsinais-Suomi
## 1407 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1408 56 - 65 years 4,000 - 8,000 inhabitants Uusimaa
## 1409 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 1410 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1411 36 - 45 years 30,000 - 80,000 inhabitants South Karelia
## 1412 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1413 56 - 65 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 1414 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1415 46 - 55 years 8,000 - 30,000 inhabitants Central Finland
## 1416 46 - 55 years 30,000 - 80,000 inhabitants H�me
## 1417 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1418 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1419 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 1420 56 - 65 years Over 80,000 inhabitants Central Finland
## 1421 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1422 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1423 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1424 Over 65 years Over 80,000 inhabitants Uusimaa
## 1425 18 - 25 years 30,000 - 80,000 inhabitants Uusimaa
## 1426 36 - 45 years 8,000 - 30,000 inhabitants Uusimaa
## 1427 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1428 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 1429 18 - 25 years 30,000 - 80,000 inhabitants Kymenlaakso
## 1430 18 - 25 years Over 80,000 inhabitants Northern Ostrobothnia
## 1431 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1432 36 - 45 years Over 80,000 inhabitants Central Finland
## 1433 18 - 25 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1434 18 - 25 years 4,000 - 8,000 inhabitants North Karelia
## 1435 56 - 65 years 4,000 - 8,000 inhabitants P�ij�t-H�me
## 1436 46 - 55 years Over 80,000 inhabitants North Savo
## 1437 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1438 56 - 65 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1439 26 - 35 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1440 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1441 26 - 35 years 8,000 - 30,000 inhabitants North Savo
## 1442 18 - 25 years 30,000 - 80,000 inhabitants South Karelia
## 1443 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1444 46 - 55 years 30,000 - 80,000 inhabitants North Karelia
## 1445 36 - 45 years Over 80,000 inhabitants Northern Ostrobothnia
## 1446 18 - 25 years 30,000 - 80,000 inhabitants Northern Ostrobothnia
## 1447 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1448 26 - 35 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 1449 Over 65 years 30,000 - 80,000 inhabitants Kymenlaakso
## 1450 56 - 65 years Under 4,000 inhabitants Central Ostrobothnia
## 1451 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1452 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1453 46 - 55 years 30,000 - 80,000 inhabitants North Karelia
## 1454 36 - 45 years 8,000 - 30,000 inhabitants Uusimaa
## 1455 36 - 45 years 8,000 - 30,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1456 36 - 45 years 30,000 - 80,000 inhabitants Kymenlaakso
## 1457 18 - 25 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1458 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1459 Over 65 years 4,000 - 8,000 inhabitants Kainuu
## 1460 56 - 65 years 30,000 - 80,000 inhabitants Northern Ostrobothnia
## 1461 26 - 35 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1462 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1463 36 - 45 years Over 80,000 inhabitants P�ij�t-H�me
## 1464 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 1465 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 1466 26 - 35 years Over 80,000 inhabitants North Savo
## 1467 56 - 65 years Over 80,000 inhabitants Kymenlaakso
## 1468 18 - 25 years Under 4,000 inhabitants Lapland
## 1469 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1470 56 - 65 years Over 80,000 inhabitants Satakunta
## 1471 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1472 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1473 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1474 46 - 55 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1475 26 - 35 years 30,000 - 80,000 inhabitants Lapland
## 1476 26 - 35 years 8,000 - 30,000 inhabitants H�me
## 1477 18 - 25 years Under 4,000 inhabitants Kymenlaakso
## 1478 36 - 45 years 8,000 - 30,000 inhabitants Kymenlaakso
## 1479 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1480 26 - 35 years 4,000 - 8,000 inhabitants Satakunta
## 1481 56 - 65 years 4,000 - 8,000 inhabitants P�ij�t-H�me
## 1482 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1483 46 - 55 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1484 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1485 26 - 35 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1486 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1487 56 - 65 years 4,000 - 8,000 inhabitants Pirkanmaa
## 1488 36 - 45 years 8,000 - 30,000 inhabitants North Savo
## 1489 56 - 65 years 4,000 - 8,000 inhabitants North Karelia
## 1490 46 - 55 years Under 4,000 inhabitants South Savo
## 1491 36 - 45 years Over 80,000 inhabitants North Savo
## 1492 56 - 65 years 8,000 - 30,000 inhabitants Central Finland
## 1493 56 - 65 years 4,000 - 8,000 inhabitants Central Finland
## 1494 46 - 55 years Over 80,000 inhabitants Central Finland
## 1495 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1496 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1497 46 - 55 years Over 80,000 inhabitants Northern Ostrobothnia
## 1498 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1499 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1500 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1501 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1502 56 - 65 years 8,000 - 30,000 inhabitants Uusimaa
## 1503 56 - 65 years 8,000 - 30,000 inhabitants North Savo
## 1504 46 - 55 years 30,000 - 80,000 inhabitants North Karelia
## 1505 18 - 25 years 8,000 - 30,000 inhabitants Lapland
## 1506 56 - 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1507 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1508 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1509 46 - 55 years 4,000 - 8,000 inhabitants Central Finland
## 1510 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1511 18 - 25 years Under 4,000 inhabitants Varsinais-Suomi
## 1512 36 - 45 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 1513 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1514 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1515 56 - 65 years Under 4,000 inhabitants Southern Ostrobothnia
## 1516 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1517 36 - 45 years 8,000 - 30,000 inhabitants Uusimaa
## 1518 36 - 45 years Over 80,000 inhabitants P�ij�t-H�me
## 1519 56 - 65 years 30,000 - 80,000 inhabitants H�me
## 1520 36 - 45 years 4,000 - 8,000 inhabitants Satakunta
## 1521 26 - 35 years 8,000 - 30,000 inhabitants Satakunta
## 1522 56 - 65 years Over 80,000 inhabitants Pirkanmaa
## 1523 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1524 26 - 35 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 1525 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1526 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1527 18 - 25 years Over 80,000 inhabitants North Savo
## 1528 18 - 25 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1529 Over 65 years 30,000 - 80,000 inhabitants Satakunta
## 1530 46 - 55 years 8,000 - 30,000 inhabitants North Karelia
## 1531 46 - 55 years 4,000 - 8,000 inhabitants South Savo
## 1532 46 - 55 years Under 4,000 inhabitants Central Finland
## 1533 36 - 45 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1534 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1535 26 - 35 years 8,000 - 30,000 inhabitants Uusimaa
## 1536 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1537 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1538 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1539 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1540 56 - 65 years Under 4,000 inhabitants North Savo
## 1541 18 - 25 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1542 56 - 65 years 4,000 - 8,000 inhabitants Lapland
## 1543 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1544 56 - 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1545 56 - 65 years 30,000 - 80,000 inhabitants Satakunta
## 1546 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1547 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1548 36 - 45 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 1549 56 - 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1550 Over 65 years 30,000 - 80,000 inhabitants South Savo
## 1551 36 - 45 years 8,000 - 30,000 inhabitants North Karelia
## 1552 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1553 46 - 55 years 30,000 - 80,000 inhabitants Satakunta
## 1554 36 - 45 years 8,000 - 30,000 inhabitants Kymenlaakso
## 1555 26 - 35 years Under 4,000 inhabitants South Karelia
## 1556 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1557 18 - 25 years 8,000 - 30,000 inhabitants North Savo
## 1558 26 - 35 years 8,000 - 30,000 inhabitants Central Finland
## 1559 56 - 65 years Under 4,000 inhabitants South Savo
## 1560 18 - 25 years Over 80,000 inhabitants North Savo
## 1561 36 - 45 years 30,000 - 80,000 inhabitants Kymenlaakso
## 1562 36 - 45 years 8,000 - 30,000 inhabitants P�ij�t-H�me
## 1563 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1564 18 - 25 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1565 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1566 26 - 35 years Under 4,000 inhabitants Lapland
## 1567 18 - 25 years Over 80,000 inhabitants Central Finland
## 1568 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1569 18 - 25 years Under 4,000 inhabitants South Karelia
## 1570 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1571 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 1572 26 - 35 years Under 4,000 inhabitants North Savo
## 1573 Over 65 years 4,000 - 8,000 inhabitants Satakunta
## 1574 Over 65 years Over 80,000 inhabitants Central Finland
## 1575 18 - 25 years 30,000 - 80,000 inhabitants Uusimaa
## 1576 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 1577 56 - 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1578 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1579 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1580 18 - 25 years 30,000 - 80,000 inhabitants H�me
## 1581 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1582 56 - 65 years Over 80,000 inhabitants Varsinais-Suomi
## 1583 36 - 45 years 30,000 - 80,000 inhabitants South Karelia
## 1584 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1585 56 - 65 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1586 Over 65 years 30,000 - 80,000 inhabitants Uusimaa
## 1587 26 - 35 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1588 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1589 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1590 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1591 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1592 26 - 35 years Over 80,000 inhabitants North Savo
## 1593 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1594 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1595 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1596 26 - 35 years 8,000 - 30,000 inhabitants Uusimaa
## 1597 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1598 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1599 36 - 45 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1600 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1601 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1602 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1603 36 - 45 years 8,000 - 30,000 inhabitants South Karelia
## 1604 18 - 25 years Over 80,000 inhabitants North Savo
## 1605 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1606 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1607 26 - 35 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1608 26 - 35 years Under 4,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1609 26 - 35 years Over 80,000 inhabitants Satakunta
## 1610 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1611 46 - 55 years 8,000 - 30,000 inhabitants Satakunta
## 1612 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1613 56 - 65 years 30,000 - 80,000 inhabitants Satakunta
## 1614 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1615 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1616 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1617 18 - 25 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1618 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1619 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1620 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1621 26 - 35 years Over 80,000 inhabitants Central Finland
## 1622 26 - 35 years Over 80,000 inhabitants North Savo
## 1623 26 - 35 years Under 4,000 inhabitants Varsinais-Suomi
## 1624 18 - 25 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1625 18 - 25 years Over 80,000 inhabitants P�ij�t-H�me
## 1626 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1627 36 - 45 years 30,000 - 80,000 inhabitants North Karelia
## 1628 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1629 26 - 35 years 8,000 - 30,000 inhabitants Lapland
## 1630 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1631 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1632 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1633 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1634 18 - 25 years 30,000 - 80,000 inhabitants South Karelia
## 1635 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1636 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1637 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1638 18 - 25 years 8,000 - 30,000 inhabitants Lapland
## 1639 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1640 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1641 18 - 25 years Over 80,000 inhabitants Central Finland
## 1642 26 - 35 years 30,000 - 80,000 inhabitants North Karelia
## 1643 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1644 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1645 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1646 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1647 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1648 18 - 25 years Over 80,000 inhabitants Northern Ostrobothnia
## 1649 18 - 25 years 8,000 - 30,000 inhabitants South Karelia
## 1650 46 - 55 years 30,000 - 80,000 inhabitants South Karelia
## 1651 26 - 35 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1652 36 - 45 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1653 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1654 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1655 26 - 35 years Under 4,000 inhabitants Uusimaa
## 1656 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1657 18 - 25 years Over 80,000 inhabitants Central Finland
## 1658 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1659 18 - 25 years Over 80,000 inhabitants North Savo
## 1660 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1661 26 - 35 years 30,000 - 80,000 inhabitants South Karelia
## 1662 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1663 26 - 35 years 8,000 - 30,000 inhabitants North Karelia
## 1664 46 - 55 years Over 80,000 inhabitants Pirkanmaa
## 1665 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1666 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1667 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1668 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1669 46 - 55 years Over 80,000 inhabitants Satakunta
## 1670 26 - 35 years 30,000 - 80,000 inhabitants North Savo
## 1671 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1672 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1673 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1674 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1675 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1676 18 - 25 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1677 18 - 25 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1678 26 - 35 years Over 80,000 inhabitants North Savo
## 1679 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1680 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1681 26 - 35 years Over 80,000 inhabitants Central Finland
## 1682 Over 65 years 4,000 - 8,000 inhabitants North Karelia
## 1683 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1684 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1685 18 - 25 years Over 80,000 inhabitants P�ij�t-H�me
## 1686 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1687 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1688 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1689 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1690 56 - 65 years Over 80,000 inhabitants P�ij�t-H�me
## 1691 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1692 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 1693 36 - 45 years Over 80,000 inhabitants P�ij�t-H�me
## 1694 26 - 35 years 30,000 - 80,000 inhabitants North Karelia
## 1695 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1696 18 - 25 years 30,000 - 80,000 inhabitants Lapland
## 1697 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1698 46 - 55 years Over 80,000 inhabitants Satakunta
## 1699 18 - 25 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 1700 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1701 36 - 45 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 1702 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1703 36 - 45 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1704 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1705 18 - 25 years Over 80,000 inhabitants Northern Ostrobothnia
## 1706 26 - 35 years 4,000 - 8,000 inhabitants South Karelia
## 1707 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1708 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1709 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1710 56 - 65 years Under 4,000 inhabitants North Savo
## 1711 18 - 25 years 30,000 - 80,000 inhabitants North Savo
## 1712 26 - 35 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1713 56 - 65 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1714 Over 65 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1715 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1716 18 - 25 years Over 80,000 inhabitants Central Finland
## 1717 46 - 55 years 8,000 - 30,000 inhabitants Uusimaa
## 1718 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1719 56 - 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1720 26 - 35 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1721 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1722 36 - 45 years 8,000 - 30,000 inhabitants Central Finland
## 1723 36 - 45 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1724 26 - 35 years 30,000 - 80,000 inhabitants North Savo
## 1725 36 - 45 years Over 80,000 inhabitants Central Finland
## 1726 36 - 45 years 4,000 - 8,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1727 18 - 25 years Over 80,000 inhabitants Northern Ostrobothnia
## 1728 26 - 35 years Over 80,000 inhabitants North Savo
## 1729 26 - 35 years Over 80,000 inhabitants Central Finland
## 1730 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1731 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1732 26 - 35 years 8,000 - 30,000 inhabitants H�me
## 1733 46 - 55 years 30,000 - 80,000 inhabitants Kymenlaakso
## 1734 18 - 25 years 4,000 - 8,000 inhabitants Uusimaa
## 1735 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1736 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1737 56 - 65 years Under 4,000 inhabitants South Savo
## 1738 36 - 45 years 30,000 - 80,000 inhabitants South Savo
## 1739 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1740 26 - 35 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1741 26 - 35 years 30,000 - 80,000 inhabitants North Karelia
## 1742 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1743 26 - 35 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1744 26 - 35 years 8,000 - 30,000 inhabitants Uusimaa
## 1745 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1746 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1747 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1748 26 - 35 years 30,000 - 80,000 inhabitants Satakunta
## 1749 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1750 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1751 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1752 26 - 35 years 8,000 - 30,000 inhabitants Uusimaa
## 1753 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1754 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1755 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1756 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1757 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1758 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1759 18 - 25 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1760 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1761 36 - 45 years 4,000 - 8,000 inhabitants Pirkanmaa
## 1762 26 - 35 years 4,000 - 8,000 inhabitants Kainuu
## 1763 36 - 45 years 30,000 - 80,000 inhabitants Uusimaa
## 1764 56 - 65 years 4,000 - 8,000 inhabitants Satakunta
## 1765 18 - 25 years Over 80,000 inhabitants Kymenlaakso
## 1766 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1767 36 - 45 years 4,000 - 8,000 inhabitants Kainuu
## 1768 26 - 35 years Over 80,000 inhabitants Kymenlaakso
## 1769 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1770 46 - 55 years 30,000 - 80,000 inhabitants Uusimaa
## 1771 26 - 35 years 4,000 - 8,000 inhabitants Southern Ostrobothnia
## 1772 18 - 25 years Over 80,000 inhabitants Central Finland
## 1773 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1774 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1775 18 - 25 years 8,000 - 30,000 inhabitants Uusimaa
## 1776 18 - 25 years 8,000 - 30,000 inhabitants Uusimaa
## 1777 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1778 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1779 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1780 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1781 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1782 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1783 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1784 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1785 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1786 26 - 35 years Under 4,000 inhabitants H�me
## 1787 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1788 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1789 18 - 25 years 8,000 - 30,000 inhabitants Central Finland
## 1790 18 - 25 years 30,000 - 80,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1791 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1792 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1793 46 - 55 years 30,000 - 80,000 inhabitants Southern Ostrobothnia
## 1794 26 - 35 years 8,000 - 30,000 inhabitants Uusimaa
## 1795 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 1796 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1797 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1798 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1799 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1800 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1801 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1802 36 - 45 years Under 4,000 inhabitants South Savo
## 1803 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1804 56 - 65 years 8,000 - 30,000 inhabitants Uusimaa
## 1805 18 - 25 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1806 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1807 26 - 35 years 4,000 - 8,000 inhabitants Central Finland
## 1808 26 - 35 years 4,000 - 8,000 inhabitants Uusimaa
## 1809 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1810 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1811 18 - 25 years Over 80,000 inhabitants Central Finland
## 1812 36 - 45 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 1813 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1814 36 - 45 years Over 80,000 inhabitants Northern Ostrobothnia
## 1815 56 - 65 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 1816 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1817 36 - 45 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## 1818 18 - 25 years 4,000 - 8,000 inhabitants Lapland
## 1819 18 - 25 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1820 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1821 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1822 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1823 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1824 56 - 65 years Over 80,000 inhabitants Uusimaa
## 1825 46 - 55 years 30,000 - 80,000 inhabitants Central Finland
## 1826 18 - 25 years 30,000 - 80,000 inhabitants North Karelia
## 1827 46 - 55 years 4,000 - 8,000 inhabitants Pirkanmaa
## 1828 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1829 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1830 18 - 25 years 30,000 - 80,000 inhabitants Varsinais-Suomi
## 1831 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1832 18 - 25 years 30,000 - 80,000 inhabitants Uusimaa
## 1833 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1834 26 - 35 years 30,000 - 80,000 inhabitants North Karelia
## 1835 18 - 25 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1836 56 - 65 years Under 4,000 inhabitants Lapland
## 1837 36 - 45 years 4,000 - 8,000 inhabitants Varsinais-Suomi
## 1838 26 - 35 years 4,000 - 8,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1839 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1840 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1841 18 - 25 years 30,000 - 80,000 inhabitants H�me
## 1842 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1843 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1844 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1845 36 - 45 years 8,000 - 30,000 inhabitants Uusimaa
## 1846 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1847 18 - 25 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1848 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1849 36 - 45 years Over 80,000 inhabitants Northern Ostrobothnia
## 1850 36 - 45 years Over 80,000 inhabitants Northern Ostrobothnia
## 1851 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1852 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1853 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1854 56 - 65 years Under 4,000 inhabitants Lapland
## 1855 26 - 35 years 8,000 - 30,000 inhabitants Satakunta
## 1856 18 - 25 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1857 18 - 25 years Over 80,000 inhabitants Central Finland
## 1858 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1859 18 - 25 years 8,000 - 30,000 inhabitants North Savo
## 1860 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1861 36 - 45 years Over 80,000 inhabitants Varsinais-Suomi
## 1862 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1863 26 - 35 years Over 80,000 inhabitants Northern Ostrobothnia
## 1864 36 - 45 years Over 80,000 inhabitants North Savo
## 1865 18 - 25 years 30,000 - 80,000 inhabitants Uusimaa
## 1866 26 - 35 years 8,000 - 30,000 inhabitants Varsinais-Suomi
## 1867 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1868 18 - 25 years 30,000 - 80,000 inhabitants South Karelia
## 1869 26 - 35 years 30,000 - 80,000 inhabitants Northern Ostrobothnia
## 1870 18 - 25 years 8,000 - 30,000 inhabitants Central Finland
## 1871 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1872 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1873 18 - 25 years 8,000 - 30,000 inhabitants Pohjanmaa (coastal Vaasa)
## 1874 18 - 25 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1875 46 - 55 years Over 80,000 inhabitants Uusimaa
## 1876 18 - 25 years 4,000 - 8,000 inhabitants North Savo
## 1877 18 - 25 years 8,000 - 30,000 inhabitants South Karelia
## 1878 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1879 56 - 65 years Under 4,000 inhabitants Northern Ostrobothnia
## 1880 46 - 55 years 4,000 - 8,000 inhabitants Varsinais-Suomi
## 1881 46 - 55 years Over 80,000 inhabitants Satakunta
## 1882 56 - 65 years 30,000 - 80,000 inhabitants Pirkanmaa
## 1883 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1884 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1885 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1886 46 - 55 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1887 26 - 35 years Over 80,000 inhabitants Satakunta
## 1888 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1889 26 - 35 years Over 80,000 inhabitants Central Finland
## 1890 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1891 18 - 25 years Under 4,000 inhabitants Uusimaa
## 1892 18 - 25 years 4,000 - 8,000 inhabitants H�me
## 1893 26 - 35 years 8,000 - 30,000 inhabitants Uusimaa
## 1894 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1895 26 - 35 years 30,000 - 80,000 inhabitants Uusimaa
## 1896 26 - 35 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1897 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1898 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1899 18 - 25 years Over 80,000 inhabitants Pirkanmaa
## 1900 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1901 26 - 35 years Over 80,000 inhabitants Central Finland
## 1902 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1903 26 - 35 years Over 80,000 inhabitants Pirkanmaa
## 1904 56 - 65 years Under 4,000 inhabitants Central Finland
## 1905 36 - 45 years 4,000 - 8,000 inhabitants Northern Ostrobothnia
## 1906 18 - 25 years 4,000 - 8,000 inhabitants North Savo
## 1907 18 - 25 years 30,000 - 80,000 inhabitants Central Ostrobothnia
## 1908 18 - 25 years 30,000 - 80,000 inhabitants South Karelia
## 1909 26 - 35 years 8,000 - 30,000 inhabitants North Savo
## 1910 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1911 26 - 35 years 30,000 - 80,000 inhabitants South Savo
## 1912 Over 65 years Over 80,000 inhabitants Northern Ostrobothnia
## 1913 46 - 55 years 8,000 - 30,000 inhabitants Pirkanmaa
## 1914 46 - 55 years 30,000 - 80,000 inhabitants South Savo
## 1915 18 - 25 years 8,000 - 30,000 inhabitants North Savo
## 1916 56 - 65 years Under 4,000 inhabitants Pirkanmaa
## 1917 36 - 45 years 8,000 - 30,000 inhabitants North Savo
## 1918 36 - 45 years 8,000 - 30,000 inhabitants Southern Ostrobothnia
## 1919 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1920 56 - 65 years Under 4,000 inhabitants Northern Ostrobothnia
## 1921 18 - 25 years Over 80,000 inhabitants Varsinais-Suomi
## 1922 26 - 35 years Under 4,000 inhabitants Pirkanmaa
## 1923 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1924 36 - 45 years Over 80,000 inhabitants Pirkanmaa
## 1925 26 - 35 years 8,000 - 30,000 inhabitants Kymenlaakso
## 1926 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1927 26 - 35 years Over 80,000 inhabitants Varsinais-Suomi
## 1928 18 - 25 years 30,000 - 80,000 inhabitants Uusimaa
## 1929 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1930 18 - 25 years Over 80,000 inhabitants Uusimaa
## 1931 36 - 45 years Over 80,000 inhabitants Uusimaa
## 1932 18 - 25 years Over 80,000 inhabitants Northern Ostrobothnia
## 1933 56 - 65 years Under 4,000 inhabitants Northern Ostrobothnia
## 1934 18 - 25 years 8,000 - 30,000 inhabitants Central Finland
## 1935 26 - 35 years Over 80,000 inhabitants Uusimaa
## 1936 18 - 25 years Over 80,000 inhabitants Northern Ostrobothnia
## 1937 26 - 35 years 8,000 - 30,000 inhabitants Satakunta
## 1938 46 - 55 years 8,000 - 30,000 inhabitants Northern Ostrobothnia
## employer
## 1 Publicly owned corporation
## 2 Private (or own) business
## 3 State
## 4 Private (or own) business
## 5 Private (or own) business
## 6 Private (or own) business
## 7 Private (or own) business
## 8 Private (or own) business
## 9 Municipality, joint municipal authority
## 10 Municipality, joint municipal authority
## 11 Private (or own) business
## 12 State
## 13 Publicly owned corporation
## 14 Other employer
## 15 Publicly owned corporation
## 16 Private (or own) business
## 17 Not in paid work
## 18 Not in paid work
## 19 Publicly owned corporation
## 20 Publicly owned corporation
## 21 State
## 22 Other employer
## 23 Municipality, joint municipal authority
## 24 Private (or own) business
## 25 Private (or own) business
## 26 Municipality, joint municipal authority
## 27 Private (or own) business
## 28 Voluntary or civic organisation/association
## 29 Municipality, joint municipal authority
## 30 Private (or own) business
## 31 Private (or own) business
## 32 State
## 33 Private (or own) business
## 34 Municipality, joint municipal authority
## 35 Private (or own) business
## 36 Private (or own) business
## 37 Private (or own) business
## 38 Private (or own) business
## 39 Private (or own) business
## 40 Private (or own) business
## 41 Publicly owned corporation
## 42 Private (or own) business
## 43 State
## 44 Municipality, joint municipal authority
## 45 Other employer
## 46 Not in paid work
## 47 Private (or own) business
## 48 Private (or own) business
## 49 Private (or own) business
## 50 Private (or own) business
## 51 Private (or own) business
## 52 Private (or own) business
## 53 Municipality, joint municipal authority
## 54 Publicly owned corporation
## 55 Private (or own) business
## 56 Voluntary or civic organisation/association
## 57 Municipality, joint municipal authority
## 58 Private (or own) business
## 59 Private (or own) business
## 60 State
## 61 Municipality, joint municipal authority
## 62 Private (or own) business
## 63 Private (or own) business
## 64 Not in paid work
## 65 State
## 66 Municipality, joint municipal authority
## 67 Municipality, joint municipal authority
## 68 Municipality, joint municipal authority
## 69 Other employer
## 70 Private (or own) business
## 71 Private (or own) business
## 72 Private (or own) business
## 73 Municipality, joint municipal authority
## 74 Publicly owned corporation
## 75 Municipality, joint municipal authority
## 76 Private (or own) business
## 77 Private (or own) business
## 78 Private (or own) business
## 79 Municipality, joint municipal authority
## 80 Private (or own) business
## 81 Private (or own) business
## 82 Publicly owned corporation
## 83 Voluntary or civic organisation/association
## 84 Publicly owned corporation
## 85 Private (or own) business
## 86 Private (or own) business
## 87 Private (or own) business
## 88 State
## 89 Private (or own) business
## 90 Private (or own) business
## 91 Not in paid work
## 92 Private (or own) business
## 93 State
## 94 State
## 95 Private (or own) business
## 96 Private (or own) business
## 97 Municipality, joint municipal authority
## 98 Private (or own) business
## 99 Private (or own) business
## 100 Municipality, joint municipal authority
## 101 Municipality, joint municipal authority
## 102 Municipality, joint municipal authority
## 103 State
## 104 Private (or own) business
## 105 Private (or own) business
## 106 Private (or own) business
## 107 Private (or own) business
## 108 Not in paid work
## 109 Not in paid work
## 110 Private (or own) business
## 111 Publicly owned corporation
## 112 Municipality, joint municipal authority
## 113 Municipality, joint municipal authority
## 114 Private (or own) business
## 115 Private (or own) business
## 116 Private (or own) business
## 117 Publicly owned corporation
## 118 Private (or own) business
## 119 State
## 120 Private (or own) business
## 121 Private (or own) business
## 122 Private (or own) business
## 123 Private (or own) business
## 124 Private (or own) business
## 125 Municipality, joint municipal authority
## 126 Private (or own) business
## 127 Private (or own) business
## 128 State
## 129 Private (or own) business
## 130 Voluntary or civic organisation/association
## 131 Private (or own) business
## 132 Not in paid work
## 133 Voluntary or civic organisation/association
## 134 Private (or own) business
## 135 Municipality, joint municipal authority
## 136 Private (or own) business
## 137 Private (or own) business
## 138 Other employer
## 139 Municipality, joint municipal authority
## 140 Private (or own) business
## 141 Private (or own) business
## 142 Other employer
## 143 Private (or own) business
## 144 Other employer
## 145 Private (or own) business
## 146 Private (or own) business
## 147 Other employer
## 148 Private (or own) business
## 149 Municipality, joint municipal authority
## 150 Private (or own) business
## 151 Municipality, joint municipal authority
## 152 Private (or own) business
## 153 Private (or own) business
## 154 Municipality, joint municipal authority
## 155 Private (or own) business
## 156 Private (or own) business
## 157 Private (or own) business
## 158 Not in paid work
## 159 Municipality, joint municipal authority
## 160 State
## 161 Private (or own) business
## 162 Private (or own) business
## 163 State
## 164 Municipality, joint municipal authority
## 165 Private (or own) business
## 166 State
## 167 Municipality, joint municipal authority
## 168 Publicly owned corporation
## 169 Not in paid work
## 170 Private (or own) business
## 171 Publicly owned corporation
## 172 Municipality, joint municipal authority
## 173 Private (or own) business
## 174 Municipality, joint municipal authority
## 175 Private (or own) business
## 176 Private (or own) business
## 177 Private (or own) business
## 178 Other employer
## 179 Private (or own) business
## 180 Private (or own) business
## 181 Not in paid work
## 182 Municipality, joint municipal authority
## 183 State
## 184 Not in paid work
## 185 Municipality, joint municipal authority
## 186 Publicly owned corporation
## 187 Not in paid work
## 188 State
## 189 Private (or own) business
## 190 Private (or own) business
## 191 Publicly owned corporation
## 192 Private (or own) business
## 193 Municipality, joint municipal authority
## 194 Private (or own) business
## 195 Other employer
## 196 State
## 197 Municipality, joint municipal authority
## 198 Not in paid work
## 199 Private (or own) business
## 200 Private (or own) business
## 201 Private (or own) business
## 202 Municipality, joint municipal authority
## 203 Municipality, joint municipal authority
## 204 Municipality, joint municipal authority
## 205 Private (or own) business
## 206 Municipality, joint municipal authority
## 207 State
## 208 Municipality, joint municipal authority
## 209 Municipality, joint municipal authority
## 210 Voluntary or civic organisation/association
## 211 Other employer
## 212 Private (or own) business
## 213 State
## 214 Private (or own) business
## 215 Private (or own) business
## 216 Private (or own) business
## 217 Private (or own) business
## 218 Municipality, joint municipal authority
## 219 Municipality, joint municipal authority
## 220 Municipality, joint municipal authority
## 221 Private (or own) business
## 222 Private (or own) business
## 223 Private (or own) business
## 224 Private (or own) business
## 225 State
## 226 Other employer
## 227 Publicly owned corporation
## 228 Municipality, joint municipal authority
## 229 Voluntary or civic organisation/association
## 230 Private (or own) business
## 231 Private (or own) business
## 232 Municipality, joint municipal authority
## 233 Private (or own) business
## 234 Municipality, joint municipal authority
## 235 Not in paid work
## 236 Municipality, joint municipal authority
## 237 Municipality, joint municipal authority
## 238 Other employer
## 239 Municipality, joint municipal authority
## 240 Other employer
## 241 Other employer
## 242 Private (or own) business
## 243 Municipality, joint municipal authority
## 244 Private (or own) business
## 245 Private (or own) business
## 246 Private (or own) business
## 247 Private (or own) business
## 248 Private (or own) business
## 249 Municipality, joint municipal authority
## 250 Not in paid work
## 251 Other employer
## 252 Private (or own) business
## 253 Municipality, joint municipal authority
## 254 Municipality, joint municipal authority
## 255 State
## 256 Private (or own) business
## 257 Other employer
## 258 Municipality, joint municipal authority
## 259 Private (or own) business
## 260 Private (or own) business
## 261 Publicly owned corporation
## 262 Municipality, joint municipal authority
## 263 Municipality, joint municipal authority
## 264 Private (or own) business
## 265 Not in paid work
## 266 Municipality, joint municipal authority
## 267 Publicly owned corporation
## 268 State
## 269 Private (or own) business
## 270 Private (or own) business
## 271 Private (or own) business
## 272 Municipality, joint municipal authority
## 273 Municipality, joint municipal authority
## 274 Municipality, joint municipal authority
## 275 Not in paid work
## 276 Municipality, joint municipal authority
## 277 Private (or own) business
## 278 Municipality, joint municipal authority
## 279 Private (or own) business
## 280 Private (or own) business
## 281 Private (or own) business
## 282 Publicly owned corporation
## 283 Not in paid work
## 284 Municipality, joint municipal authority
## 285 Not in paid work
## 286 Private (or own) business
## 287 State
## 288 Private (or own) business
## 289 Municipality, joint municipal authority
## 290 State
## 291 State
## 292 Not in paid work
## 293 Publicly owned corporation
## 294 Private (or own) business
## 295 State
## 296 Private (or own) business
## 297 Publicly owned corporation
## 298 Private (or own) business
## 299 Private (or own) business
## 300 Municipality, joint municipal authority
## 301 Not in paid work
## 302 Municipality, joint municipal authority
## 303 Private (or own) business
## 304 Publicly owned corporation
## 305 Municipality, joint municipal authority
## 306 Private (or own) business
## 307 Voluntary or civic organisation/association
## 308 Not in paid work
## 309 Private (or own) business
## 310 Private (or own) business
## 311 Private (or own) business
## 312 State
## 313 Private (or own) business
## 314 Private (or own) business
## 315 Municipality, joint municipal authority
## 316 Private (or own) business
## 317 Private (or own) business
## 318 Private (or own) business
## 319 Other employer
## 320 Private (or own) business
## 321 Private (or own) business
## 322 Municipality, joint municipal authority
## 323 Private (or own) business
## 324 Other employer
## 325 Private (or own) business
## 326 Private (or own) business
## 327 Publicly owned corporation
## 328 State
## 329 Not in paid work
## 330 Voluntary or civic organisation/association
## 331 Private (or own) business
## 332 Not in paid work
## 333 Municipality, joint municipal authority
## 334 Municipality, joint municipal authority
## 335 Voluntary or civic organisation/association
## 336 Private (or own) business
## 337 Private (or own) business
## 338 Other employer
## 339 Private (or own) business
## 340 Private (or own) business
## 341 Publicly owned corporation
## 342 Private (or own) business
## 343 Private (or own) business
## 344 Private (or own) business
## 345 Private (or own) business
## 346 Municipality, joint municipal authority
## 347 Not in paid work
## 348 Private (or own) business
## 349 Private (or own) business
## 350 Municipality, joint municipal authority
## 351 Municipality, joint municipal authority
## 352 Municipality, joint municipal authority
## 353 Municipality, joint municipal authority
## 354 Private (or own) business
## 355 Private (or own) business
## 356 State
## 357 Other employer
## 358 State
## 359 Municipality, joint municipal authority
## 360 Private (or own) business
## 361 State
## 362 Private (or own) business
## 363 State
## 364 Private (or own) business
## 365 Private (or own) business
## 366 Other employer
## 367 Private (or own) business
## 368 Municipality, joint municipal authority
## 369 Private (or own) business
## 370 Municipality, joint municipal authority
## 371 Municipality, joint municipal authority
## 372 State
## 373 State
## 374 Municipality, joint municipal authority
## 375 State
## 376 Not in paid work
## 377 Publicly owned corporation
## 378 Municipality, joint municipal authority
## 379 Private (or own) business
## 380 Publicly owned corporation
## 381 Private (or own) business
## 382 Private (or own) business
## 383 Other employer
## 384 Private (or own) business
## 385 State
## 386 Municipality, joint municipal authority
## 387 Municipality, joint municipal authority
## 388 Municipality, joint municipal authority
## 389 Private (or own) business
## 390 Municipality, joint municipal authority
## 391 Publicly owned corporation
## 392 State
## 393 Municipality, joint municipal authority
## 394 Publicly owned corporation
## 395 Private (or own) business
## 396 Other employer
## 397 Private (or own) business
## 398 Publicly owned corporation
## 399 State
## 400 Municipality, joint municipal authority
## 401 Private (or own) business
## 402 Municipality, joint municipal authority
## 403 State
## 404 Private (or own) business
## 405 Private (or own) business
## 406 Not in paid work
## 407 Private (or own) business
## 408 Private (or own) business
## 409 Private (or own) business
## 410 Publicly owned corporation
## 411 Municipality, joint municipal authority
## 412 Not in paid work
## 413 Municipality, joint municipal authority
## 414 Private (or own) business
## 415 State
## 416 Not in paid work
## 417 Private (or own) business
## 418 Municipality, joint municipal authority
## 419 Municipality, joint municipal authority
## 420 State
## 421 Publicly owned corporation
## 422 Private (or own) business
## 423 Private (or own) business
## 424 Private (or own) business
## 425 Municipality, joint municipal authority
## 426 Private (or own) business
## 427 Other employer
## 428 Private (or own) business
## 429 State
## 430 State
## 431 State
## 432 Not in paid work
## 433 Other employer
## 434 Municipality, joint municipal authority
## 435 Private (or own) business
## 436 Private (or own) business
## 437 Other employer
## 438 Private (or own) business
## 439 Not in paid work
## 440 Other employer
## 441 Private (or own) business
## 442 Publicly owned corporation
## 443 State
## 444 Not in paid work
## 445 Not in paid work
## 446 Private (or own) business
## 447 Private (or own) business
## 448 Private (or own) business
## 449 Municipality, joint municipal authority
## 450 State
## 451 Private (or own) business
## 452 Municipality, joint municipal authority
## 453 Private (or own) business
## 454 Municipality, joint municipal authority
## 455 Private (or own) business
## 456 Private (or own) business
## 457 Private (or own) business
## 458 Private (or own) business
## 459 Municipality, joint municipal authority
## 460 Private (or own) business
## 461 Private (or own) business
## 462 Not in paid work
## 463 Private (or own) business
## 464 Municipality, joint municipal authority
## 465 Municipality, joint municipal authority
## 466 Private (or own) business
## 467 Municipality, joint municipal authority
## 468 Municipality, joint municipal authority
## 469 Not in paid work
## 470 Not in paid work
## 471 Private (or own) business
## 472 State
## 473 State
## 474 Private (or own) business
## 475 State
## 476 Private (or own) business
## 477 Municipality, joint municipal authority
## 478 Municipality, joint municipal authority
## 479 Other employer
## 480 State
## 481 Not in paid work
## 482 State
## 483 Private (or own) business
## 484 Municipality, joint municipal authority
## 485 Private (or own) business
## 486 Private (or own) business
## 487 Publicly owned corporation
## 488 Municipality, joint municipal authority
## 489 State
## 490 Municipality, joint municipal authority
## 491 State
## 492 Private (or own) business
## 493 Other employer
## 494 Private (or own) business
## 495 Municipality, joint municipal authority
## 496 State
## 497 Private (or own) business
## 498 Publicly owned corporation
## 499 Municipality, joint municipal authority
## 500 Municipality, joint municipal authority
## 501 Municipality, joint municipal authority
## 502 State
## 503 Private (or own) business
## 504 Private (or own) business
## 505 Municipality, joint municipal authority
## 506 Other employer
## 507 Voluntary or civic organisation/association
## 508 Private (or own) business
## 509 Voluntary or civic organisation/association
## 510 Other employer
## 511 Municipality, joint municipal authority
## 512 Not in paid work
## 513 Voluntary or civic organisation/association
## 514 Municipality, joint municipal authority
## 515 Municipality, joint municipal authority
## 516 Not in paid work
## 517 Private (or own) business
## 518 Publicly owned corporation
## 519 Municipality, joint municipal authority
## 520 Municipality, joint municipal authority
## 521 Private (or own) business
## 522 Private (or own) business
## 523 State
## 524 Publicly owned corporation
## 525 Publicly owned corporation
## 526 Private (or own) business
## 527 Not in paid work
## 528 Private (or own) business
## 529 Private (or own) business
## 530 Private (or own) business
## 531 Publicly owned corporation
## 532 Other employer
## 533 Private (or own) business
## 534 Municipality, joint municipal authority
## 535 Private (or own) business
## 536 Private (or own) business
## 537 Private (or own) business
## 538 Municipality, joint municipal authority
## 539 Private (or own) business
## 540 Municipality, joint municipal authority
## 541 Voluntary or civic organisation/association
## 542 Not in paid work
## 543 Voluntary or civic organisation/association
## 544 Private (or own) business
## 545 Municipality, joint municipal authority
## 546 Private (or own) business
## 547 Private (or own) business
## 548 Municipality, joint municipal authority
## 549 Voluntary or civic organisation/association
## 550 Private (or own) business
## 551 Private (or own) business
## 552 State
## 553 Private (or own) business
## 554 Private (or own) business
## 555 Publicly owned corporation
## 556 Municipality, joint municipal authority
## 557 Private (or own) business
## 558 Municipality, joint municipal authority
## 559 Private (or own) business
## 560 Private (or own) business
## 561 Private (or own) business
## 562 Private (or own) business
## 563 Private (or own) business
## 564 Municipality, joint municipal authority
## 565 Private (or own) business
## 566 Private (or own) business
## 567 Publicly owned corporation
## 568 Municipality, joint municipal authority
## 569 Not in paid work
## 570 Municipality, joint municipal authority
## 571 Not in paid work
## 572 Other employer
## 573 Publicly owned corporation
## 574 Private (or own) business
## 575 Private (or own) business
## 576 Private (or own) business
## 577 Private (or own) business
## 578 Private (or own) business
## 579 Other employer
## 580 Private (or own) business
## 581 Private (or own) business
## 582 Other employer
## 583 Private (or own) business
## 584 Publicly owned corporation
## 585 Private (or own) business
## 586 Not in paid work
## 587 Private (or own) business
## 588 State
## 589 Private (or own) business
## 590 Private (or own) business
## 591 Publicly owned corporation
## 592 Municipality, joint municipal authority
## 593 Not in paid work
## 594 Not in paid work
## 595 Private (or own) business
## 596 Private (or own) business
## 597 Private (or own) business
## 598 Other employer
## 599 Municipality, joint municipal authority
## 600 Private (or own) business
## 601 Private (or own) business
## 602 Private (or own) business
## 603 Municipality, joint municipal authority
## 604 Private (or own) business
## 605 Municipality, joint municipal authority
## 606 Private (or own) business
## 607 Publicly owned corporation
## 608 Private (or own) business
## 609 Not in paid work
## 610 Municipality, joint municipal authority
## 611 Publicly owned corporation
## 612 Not in paid work
## 613 Private (or own) business
## 614 Private (or own) business
## 615 Private (or own) business
## 616 Municipality, joint municipal authority
## 617 Municipality, joint municipal authority
## 618 Publicly owned corporation
## 619 Municipality, joint municipal authority
## 620 Other employer
## 621 Private (or own) business
## 622 Other employer
## 623 State
## 624 Other employer
## 625 State
## 626 Private (or own) business
## 627 Municipality, joint municipal authority
## 628 Private (or own) business
## 629 Private (or own) business
## 630 Voluntary or civic organisation/association
## 631 Private (or own) business
## 632 Not in paid work
## 633 Private (or own) business
## 634 Other employer
## 635 Private (or own) business
## 636 Other employer
## 637 State
## 638 Private (or own) business
## 639 Private (or own) business
## 640 Private (or own) business
## 641 State
## 642 State
## 643 Private (or own) business
## 644 Private (or own) business
## 645 Publicly owned corporation
## 646 Not in paid work
## 647 Other employer
## 648 Other employer
## 649 Municipality, joint municipal authority
## 650 Municipality, joint municipal authority
## 651 Publicly owned corporation
## 652 Private (or own) business
## 653 Publicly owned corporation
## 654 Private (or own) business
## 655 Private (or own) business
## 656 Private (or own) business
## 657 Voluntary or civic organisation/association
## 658 Not in paid work
## 659 Private (or own) business
## 660 State
## 661 Municipality, joint municipal authority
## 662 Private (or own) business
## 663 Private (or own) business
## 664 Private (or own) business
## 665 Private (or own) business
## 666 State
## 667 Not in paid work
## 668 Private (or own) business
## 669 Voluntary or civic organisation/association
## 670 State
## 671 Private (or own) business
## 672 Private (or own) business
## 673 Private (or own) business
## 674 State
## 675 Private (or own) business
## 676 Municipality, joint municipal authority
## 677 Private (or own) business
## 678 Private (or own) business
## 679 Private (or own) business
## 680 Private (or own) business
## 681 Private (or own) business
## 682 Not in paid work
## 683 Municipality, joint municipal authority
## 684 State
## 685 Voluntary or civic organisation/association
## 686 Private (or own) business
## 687 Private (or own) business
## 688 Private (or own) business
## 689 Private (or own) business
## 690 Private (or own) business
## 691 Municipality, joint municipal authority
## 692 Not in paid work
## 693 Publicly owned corporation
## 694 Publicly owned corporation
## 695 Private (or own) business
## 696 Private (or own) business
## 697 Private (or own) business
## 698 Publicly owned corporation
## 699 Private (or own) business
## 700 Private (or own) business
## 701 Private (or own) business
## 702 Other employer
## 703 Other employer
## 704 Private (or own) business
## 705 Private (or own) business
## 706 Private (or own) business
## 707 Voluntary or civic organisation/association
## 708 Municipality, joint municipal authority
## 709 State
## 710 Publicly owned corporation
## 711 Private (or own) business
## 712 Municipality, joint municipal authority
## 713 Private (or own) business
## 714 Private (or own) business
## 715 Not in paid work
## 716 Private (or own) business
## 717 Private (or own) business
## 718 Private (or own) business
## 719 Not in paid work
## 720 Municipality, joint municipal authority
## 721 State
## 722 Private (or own) business
## 723 Private (or own) business
## 724 Not in paid work
## 725 Private (or own) business
## 726 Private (or own) business
## 727 Municipality, joint municipal authority
## 728 State
## 729 Voluntary or civic organisation/association
## 730 Private (or own) business
## 731 Private (or own) business
## 732 Municipality, joint municipal authority
## 733 Private (or own) business
## 734 Not in paid work
## 735 Municipality, joint municipal authority
## 736 Private (or own) business
## 737 Municipality, joint municipal authority
## 738 Private (or own) business
## 739 State
## 740 Private (or own) business
## 741 Publicly owned corporation
## 742 State
## 743 Not in paid work
## 744 Private (or own) business
## 745 Private (or own) business
## 746 Municipality, joint municipal authority
## 747 Voluntary or civic organisation/association
## 748 Publicly owned corporation
## 749 Other employer
## 750 Voluntary or civic organisation/association
## 751 Voluntary or civic organisation/association
## 752 Publicly owned corporation
## 753 Voluntary or civic organisation/association
## 754 Voluntary or civic organisation/association
## 755 Private (or own) business
## 756 Publicly owned corporation
## 757 Private (or own) business
## 758 Municipality, joint municipal authority
## 759 Publicly owned corporation
## 760 Municipality, joint municipal authority
## 761 Private (or own) business
## 762 Private (or own) business
## 763 Private (or own) business
## 764 Municipality, joint municipal authority
## 765 Publicly owned corporation
## 766 Publicly owned corporation
## 767 Private (or own) business
## 768 Private (or own) business
## 769 Not in paid work
## 770 Private (or own) business
## 771 Publicly owned corporation
## 772 Private (or own) business
## 773 Private (or own) business
## 774 Publicly owned corporation
## 775 Private (or own) business
## 776 Municipality, joint municipal authority
## 777 Municipality, joint municipal authority
## 778 Private (or own) business
## 779 Private (or own) business
## 780 State
## 781 Private (or own) business
## 782 State
## 783 Private (or own) business
## 784 Not in paid work
## 785 Municipality, joint municipal authority
## 786 Private (or own) business
## 787 Municipality, joint municipal authority
## 788 Municipality, joint municipal authority
## 789 Publicly owned corporation
## 790 Private (or own) business
## 791 Voluntary or civic organisation/association
## 792 Other employer
## 793 Private (or own) business
## 794 Municipality, joint municipal authority
## 795 Not in paid work
## 796 Private (or own) business
## 797 Municipality, joint municipal authority
## 798 Private (or own) business
## 799 State
## 800 Private (or own) business
## 801 Private (or own) business
## 802 State
## 803 Municipality, joint municipal authority
## 804 Private (or own) business
## 805 Voluntary or civic organisation/association
## 806 Private (or own) business
## 807 Municipality, joint municipal authority
## 808 Private (or own) business
## 809 Municipality, joint municipal authority
## 810 Not in paid work
## 811 Private (or own) business
## 812 Municipality, joint municipal authority
## 813 Private (or own) business
## 814 Private (or own) business
## 815 Private (or own) business
## 816 Other employer
## 817 Municipality, joint municipal authority
## 818 Private (or own) business
## 819 Private (or own) business
## 820 State
## 821 Publicly owned corporation
## 822 State
## 823 Publicly owned corporation
## 824 Voluntary or civic organisation/association
## 825 Private (or own) business
## 826 Private (or own) business
## 827 Publicly owned corporation
## 828 Other employer
## 829 State
## 830 Private (or own) business
## 831 Municipality, joint municipal authority
## 832 Private (or own) business
## 833 Private (or own) business
## 834 Private (or own) business
## 835 Private (or own) business
## 836 Private (or own) business
## 837 Private (or own) business
## 838 Private (or own) business
## 839 Publicly owned corporation
## 840 Private (or own) business
## 841 Private (or own) business
## 842 Private (or own) business
## 843 Municipality, joint municipal authority
## 844 Private (or own) business
## 845 Municipality, joint municipal authority
## 846 Not in paid work
## 847 Municipality, joint municipal authority
## 848 State
## 849 Other employer
## 850 Private (or own) business
## 851 Municipality, joint municipal authority
## 852 Municipality, joint municipal authority
## 853 Private (or own) business
## 854 Private (or own) business
## 855 Not in paid work
## 856 Not in paid work
## 857 Municipality, joint municipal authority
## 858 Private (or own) business
## 859 Not in paid work
## 860 Other employer
## 861 Private (or own) business
## 862 Private (or own) business
## 863 Municipality, joint municipal authority
## 864 Municipality, joint municipal authority
## 865 Private (or own) business
## 866 Other employer
## 867 Private (or own) business
## 868 Not in paid work
## 869 Publicly owned corporation
## 870 Private (or own) business
## 871 Private (or own) business
## 872 Municipality, joint municipal authority
## 873 Publicly owned corporation
## 874 Municipality, joint municipal authority
## 875 Municipality, joint municipal authority
## 876 Private (or own) business
## 877 Publicly owned corporation
## 878 Private (or own) business
## 879 Private (or own) business
## 880 State
## 881 Other employer
## 882 Municipality, joint municipal authority
## 883 Private (or own) business
## 884 Private (or own) business
## 885 Private (or own) business
## 886 Publicly owned corporation
## 887 Municipality, joint municipal authority
## 888 Municipality, joint municipal authority
## 889 Private (or own) business
## 890 Private (or own) business
## 891 Private (or own) business
## 892 Not in paid work
## 893 Private (or own) business
## 894 State
## 895 Voluntary or civic organisation/association
## 896 Private (or own) business
## 897 Not in paid work
## 898 Private (or own) business
## 899 Municipality, joint municipal authority
## 900 Publicly owned corporation
## 901 Private (or own) business
## 902 Not in paid work
## 903 Private (or own) business
## 904 Private (or own) business
## 905 Municipality, joint municipal authority
## 906 Other employer
## 907 Municipality, joint municipal authority
## 908 Other employer
## 909 Not in paid work
## 910 Private (or own) business
## 911 Private (or own) business
## 912 Private (or own) business
## 913 Municipality, joint municipal authority
## 914 State
## 915 State
## 916 Private (or own) business
## 917 Private (or own) business
## 918 Other employer
## 919 Private (or own) business
## 920 Private (or own) business
## 921 Municipality, joint municipal authority
## 922 Publicly owned corporation
## 923 Not in paid work
## 924 State
## 925 Private (or own) business
## 926 Private (or own) business
## 927 Private (or own) business
## 928 Private (or own) business
## 929 Private (or own) business
## 930 Private (or own) business
## 931 Publicly owned corporation
## 932 Municipality, joint municipal authority
## 933 Private (or own) business
## 934 Other employer
## 935 Publicly owned corporation
## 936 Municipality, joint municipal authority
## 937 Not in paid work
## 938 Voluntary or civic organisation/association
## 939 Municipality, joint municipal authority
## 940 Private (or own) business
## 941 Municipality, joint municipal authority
## 942 Publicly owned corporation
## 943 Publicly owned corporation
## 944 Private (or own) business
## 945 Private (or own) business
## 946 Private (or own) business
## 947 Other employer
## 948 Private (or own) business
## 949 Private (or own) business
## 950 Not in paid work
## 951 Municipality, joint municipal authority
## 952 Private (or own) business
## 953 Publicly owned corporation
## 954 Private (or own) business
## 955 Private (or own) business
## 956 Private (or own) business
## 957 Not in paid work
## 958 State
## 959 Private (or own) business
## 960 Private (or own) business
## 961 Municipality, joint municipal authority
## 962 Municipality, joint municipal authority
## 963 Private (or own) business
## 964 Voluntary or civic organisation/association
## 965 Private (or own) business
## 966 Private (or own) business
## 967 Private (or own) business
## 968 Municipality, joint municipal authority
## 969 Publicly owned corporation
## 970 Municipality, joint municipal authority
## 971 Municipality, joint municipal authority
## 972 Private (or own) business
## 973 Publicly owned corporation
## 974 Private (or own) business
## 975 Voluntary or civic organisation/association
## 976 Private (or own) business
## 977 Not in paid work
## 978 Private (or own) business
## 979 Municipality, joint municipal authority
## 980 Publicly owned corporation
## 981 Private (or own) business
## 982 Private (or own) business
## 983 Private (or own) business
## 984 Publicly owned corporation
## 985 Municipality, joint municipal authority
## 986 Private (or own) business
## 987 Private (or own) business
## 988 Municipality, joint municipal authority
## 989 Voluntary or civic organisation/association
## 990 Private (or own) business
## 991 Private (or own) business
## 992 Other employer
## 993 Voluntary or civic organisation/association
## 994 Other employer
## 995 Other employer
## 996 Not in paid work
## 997 State
## 998 Private (or own) business
## 999 Private (or own) business
## 1000 Not in paid work
## 1001 Private (or own) business
## 1002 Municipality, joint municipal authority
## 1003 Private (or own) business
## 1004 Other employer
## 1005 Municipality, joint municipal authority
## 1006 Private (or own) business
## 1007 Municipality, joint municipal authority
## 1008 Private (or own) business
## 1009 State
## 1010 Municipality, joint municipal authority
## 1011 Private (or own) business
## 1012 Publicly owned corporation
## 1013 Not in paid work
## 1014 Private (or own) business
## 1015 Not in paid work
## 1016 Private (or own) business
## 1017 Municipality, joint municipal authority
## 1018 Private (or own) business
## 1019 Private (or own) business
## 1020 Private (or own) business
## 1021 Voluntary or civic organisation/association
## 1022 Municipality, joint municipal authority
## 1023 Publicly owned corporation
## 1024 Municipality, joint municipal authority
## 1025 Private (or own) business
## 1026 State
## 1027 Private (or own) business
## 1028 Municipality, joint municipal authority
## 1029 Municipality, joint municipal authority
## 1030 Private (or own) business
## 1031 Municipality, joint municipal authority
## 1032 Not in paid work
## 1033 Voluntary or civic organisation/association
## 1034 Not in paid work
## 1035 Publicly owned corporation
## 1036 State
## 1037 State
## 1038 Private (or own) business
## 1039 State
## 1040 Private (or own) business
## 1041 Private (or own) business
## 1042 Municipality, joint municipal authority
## 1043 Municipality, joint municipal authority
## 1044 Private (or own) business
## 1045 Private (or own) business
## 1046 Municipality, joint municipal authority
## 1047 State
## 1048 Private (or own) business
## 1049 Publicly owned corporation
## 1050 Municipality, joint municipal authority
## 1051 Private (or own) business
## 1052 Private (or own) business
## 1053 Private (or own) business
## 1054 Private (or own) business
## 1055 Voluntary or civic organisation/association
## 1056 Municipality, joint municipal authority
## 1057 Private (or own) business
## 1058 Municipality, joint municipal authority
## 1059 Municipality, joint municipal authority
## 1060 Private (or own) business
## 1061 Voluntary or civic organisation/association
## 1062 State
## 1063 Private (or own) business
## 1064 Voluntary or civic organisation/association
## 1065 Private (or own) business
## 1066 Private (or own) business
## 1067 Private (or own) business
## 1068 Not in paid work
## 1069 Voluntary or civic organisation/association
## 1070 Private (or own) business
## 1071 Municipality, joint municipal authority
## 1072 Voluntary or civic organisation/association
## 1073 Private (or own) business
## 1074 Private (or own) business
## 1075 Private (or own) business
## 1076 Private (or own) business
## 1077 Private (or own) business
## 1078 Private (or own) business
## 1079 Private (or own) business
## 1080 Municipality, joint municipal authority
## 1081 Private (or own) business
## 1082 Private (or own) business
## 1083 Private (or own) business
## 1084 Private (or own) business
## 1085 Private (or own) business
## 1086 Publicly owned corporation
## 1087 Municipality, joint municipal authority
## 1088 Voluntary or civic organisation/association
## 1089 Private (or own) business
## 1090 Municipality, joint municipal authority
## 1091 Private (or own) business
## 1092 Private (or own) business
## 1093 Not in paid work
## 1094 Private (or own) business
## 1095 Municipality, joint municipal authority
## 1096 Private (or own) business
## 1097 Not in paid work
## 1098 Private (or own) business
## 1099 Publicly owned corporation
## 1100 Not in paid work
## 1101 Private (or own) business
## 1102 Private (or own) business
## 1103 Private (or own) business
## 1104 Private (or own) business
## 1105 Municipality, joint municipal authority
## 1106 Private (or own) business
## 1107 Not in paid work
## 1108 Other employer
## 1109 Private (or own) business
## 1110 Private (or own) business
## 1111 Private (or own) business
## 1112 Private (or own) business
## 1113 Municipality, joint municipal authority
## 1114 Voluntary or civic organisation/association
## 1115 Not in paid work
## 1116 Not in paid work
## 1117 Private (or own) business
## 1118 Private (or own) business
## 1119 Not in paid work
## 1120 Private (or own) business
## 1121 Municipality, joint municipal authority
## 1122 Other employer
## 1123 Publicly owned corporation
## 1124 Private (or own) business
## 1125 Private (or own) business
## 1126 Other employer
## 1127 Private (or own) business
## 1128 Private (or own) business
## 1129 Private (or own) business
## 1130 Municipality, joint municipal authority
## 1131 Municipality, joint municipal authority
## 1132 State
## 1133 Private (or own) business
## 1134 Other employer
## 1135 Publicly owned corporation
## 1136 Private (or own) business
## 1137 Private (or own) business
## 1138 Municipality, joint municipal authority
## 1139 Publicly owned corporation
## 1140 Private (or own) business
## 1141 Municipality, joint municipal authority
## 1142 Private (or own) business
## 1143 Private (or own) business
## 1144 Not in paid work
## 1145 Private (or own) business
## 1146 Private (or own) business
## 1147 Municipality, joint municipal authority
## 1148 Private (or own) business
## 1149 Private (or own) business
## 1150 Not in paid work
## 1151 Private (or own) business
## 1152 Not in paid work
## 1153 Voluntary or civic organisation/association
## 1154 Private (or own) business
## 1155 Private (or own) business
## 1156 Private (or own) business
## 1157 Voluntary or civic organisation/association
## 1158 Private (or own) business
## 1159 Private (or own) business
## 1160 Publicly owned corporation
## 1161 State
## 1162 Private (or own) business
## 1163 Municipality, joint municipal authority
## 1164 Not in paid work
## 1165 Not in paid work
## 1166 Not in paid work
## 1167 Publicly owned corporation
## 1168 Other employer
## 1169 Private (or own) business
## 1170 Publicly owned corporation
## 1171 Municipality, joint municipal authority
## 1172 Voluntary or civic organisation/association
## 1173 Private (or own) business
## 1174 Private (or own) business
## 1175 Not in paid work
## 1176 Not in paid work
## 1177 Private (or own) business
## 1178 Municipality, joint municipal authority
## 1179 State
## 1180 Not in paid work
## 1181 Private (or own) business
## 1182 Municipality, joint municipal authority
## 1183 Other employer
## 1184 Municipality, joint municipal authority
## 1185 Publicly owned corporation
## 1186 Private (or own) business
## 1187 Private (or own) business
## 1188 Municipality, joint municipal authority
## 1189 Private (or own) business
## 1190 Private (or own) business
## 1191 Municipality, joint municipal authority
## 1192 Private (or own) business
## 1193 State
## 1194 Municipality, joint municipal authority
## 1195 Private (or own) business
## 1196 State
## 1197 Private (or own) business
## 1198 Municipality, joint municipal authority
## 1199 State
## 1200 Private (or own) business
## 1201 Private (or own) business
## 1202 Private (or own) business
## 1203 Other employer
## 1204 Private (or own) business
## 1205 Municipality, joint municipal authority
## 1206 Municipality, joint municipal authority
## 1207 Private (or own) business
## 1208 Municipality, joint municipal authority
## 1209 Private (or own) business
## 1210 Private (or own) business
## 1211 Private (or own) business
## 1212 Voluntary or civic organisation/association
## 1213 State
## 1214 Municipality, joint municipal authority
## 1215 Private (or own) business
## 1216 Municipality, joint municipal authority
## 1217 Private (or own) business
## 1218 Private (or own) business
## 1219 Not in paid work
## 1220 Private (or own) business
## 1221 Not in paid work
## 1222 Private (or own) business
## 1223 Not in paid work
## 1224 Municipality, joint municipal authority
## 1225 State
## 1226 Private (or own) business
## 1227 Not in paid work
## 1228 Private (or own) business
## 1229 Private (or own) business
## 1230 Other employer
## 1231 Municipality, joint municipal authority
## 1232 Private (or own) business
## 1233 Municipality, joint municipal authority
## 1234 Municipality, joint municipal authority
## 1235 Municipality, joint municipal authority
## 1236 Municipality, joint municipal authority
## 1237 Voluntary or civic organisation/association
## 1238 Private (or own) business
## 1239 Private (or own) business
## 1240 Not in paid work
## 1241 Private (or own) business
## 1242 State
## 1243 Publicly owned corporation
## 1244 Private (or own) business
## 1245 Not in paid work
## 1246 Municipality, joint municipal authority
## 1247 Not in paid work
## 1248 Municipality, joint municipal authority
## 1249 Not in paid work
## 1250 State
## 1251 Other employer
## 1252 Private (or own) business
## 1253 State
## 1254 Not in paid work
## 1255 Not in paid work
## 1256 Private (or own) business
## 1257 Private (or own) business
## 1258 Municipality, joint municipal authority
## 1259 Other employer
## 1260 Private (or own) business
## 1261 Not in paid work
## 1262 Private (or own) business
## 1263 Not in paid work
## 1264 State
## 1265 Private (or own) business
## 1266 Voluntary or civic organisation/association
## 1267 Private (or own) business
## 1268 Private (or own) business
## 1269 Not in paid work
## 1270 Not in paid work
## 1271 Private (or own) business
## 1272 Private (or own) business
## 1273 Publicly owned corporation
## 1274 Not in paid work
## 1275 Not in paid work
## 1276 Municipality, joint municipal authority
## 1277 Private (or own) business
## 1278 Not in paid work
## 1279 Private (or own) business
## 1280 Private (or own) business
## 1281 Private (or own) business
## 1282 Private (or own) business
## 1283 Municipality, joint municipal authority
## 1284 Other employer
## 1285 Private (or own) business
## 1286 Private (or own) business
## 1287 Private (or own) business
## 1288 Private (or own) business
## 1289 Private (or own) business
## 1290 Private (or own) business
## 1291 Voluntary or civic organisation/association
## 1292 Municipality, joint municipal authority
## 1293 Municipality, joint municipal authority
## 1294 State
## 1295 State
## 1296 Municipality, joint municipal authority
## 1297 Voluntary or civic organisation/association
## 1298 Other employer
## 1299 Municipality, joint municipal authority
## 1300 Other employer
## 1301 Municipality, joint municipal authority
## 1302 Municipality, joint municipal authority
## 1303 Private (or own) business
## 1304 Private (or own) business
## 1305 Private (or own) business
## 1306 Private (or own) business
## 1307 Municipality, joint municipal authority
## 1308 Municipality, joint municipal authority
## 1309 Private (or own) business
## 1310 Municipality, joint municipal authority
## 1311 Private (or own) business
## 1312 Private (or own) business
## 1313 Other employer
## 1314 Private (or own) business
## 1315 Municipality, joint municipal authority
## 1316 Private (or own) business
## 1317 Municipality, joint municipal authority
## 1318 Private (or own) business
## 1319 Municipality, joint municipal authority
## 1320 Private (or own) business
## 1321 Private (or own) business
## 1322 Private (or own) business
## 1323 Private (or own) business
## 1324 Not in paid work
## 1325 Not in paid work
## 1326 Publicly owned corporation
## 1327 Private (or own) business
## 1328 Private (or own) business
## 1329 Private (or own) business
## 1330 Municipality, joint municipal authority
## 1331 Private (or own) business
## 1332 Municipality, joint municipal authority
## 1333 Private (or own) business
## 1334 Private (or own) business
## 1335 Private (or own) business
## 1336 Publicly owned corporation
## 1337 Private (or own) business
## 1338 Municipality, joint municipal authority
## 1339 Not in paid work
## 1340 Voluntary or civic organisation/association
## 1341 Not in paid work
## 1342 Other employer
## 1343 Municipality, joint municipal authority
## 1344 Private (or own) business
## 1345 State
## 1346 Private (or own) business
## 1347 Private (or own) business
## 1348 Private (or own) business
## 1349 Private (or own) business
## 1350 Private (or own) business
## 1351 Private (or own) business
## 1352 Private (or own) business
## 1353 Private (or own) business
## 1354 State
## 1355 Voluntary or civic organisation/association
## 1356 Private (or own) business
## 1357 Other employer
## 1358 Private (or own) business
## 1359 Private (or own) business
## 1360 Municipality, joint municipal authority
## 1361 Not in paid work
## 1362 Private (or own) business
## 1363 Private (or own) business
## 1364 Not in paid work
## 1365 Publicly owned corporation
## 1366 Private (or own) business
## 1367 Private (or own) business
## 1368 Publicly owned corporation
## 1369 Publicly owned corporation
## 1370 Municipality, joint municipal authority
## 1371 Private (or own) business
## 1372 Not in paid work
## 1373 Publicly owned corporation
## 1374 Private (or own) business
## 1375 Private (or own) business
## 1376 Private (or own) business
## 1377 Municipality, joint municipal authority
## 1378 State
## 1379 Municipality, joint municipal authority
## 1380 Private (or own) business
## 1381 Municipality, joint municipal authority
## 1382 Not in paid work
## 1383 Private (or own) business
## 1384 Private (or own) business
## 1385 Private (or own) business
## 1386 Not in paid work
## 1387 Private (or own) business
## 1388 Municipality, joint municipal authority
## 1389 Private (or own) business
## 1390 Publicly owned corporation
## 1391 Private (or own) business
## 1392 Not in paid work
## 1393 Private (or own) business
## 1394 Municipality, joint municipal authority
## 1395 Private (or own) business
## 1396 Private (or own) business
## 1397 Private (or own) business
## 1398 Not in paid work
## 1399 Private (or own) business
## 1400 Publicly owned corporation
## 1401 Not in paid work
## 1402 Not in paid work
## 1403 Not in paid work
## 1404 Private (or own) business
## 1405 Municipality, joint municipal authority
## 1406 Municipality, joint municipal authority
## 1407 Private (or own) business
## 1408 Private (or own) business
## 1409 Private (or own) business
## 1410 Municipality, joint municipal authority
## 1411 Private (or own) business
## 1412 Municipality, joint municipal authority
## 1413 Municipality, joint municipal authority
## 1414 Private (or own) business
## 1415 Private (or own) business
## 1416 Private (or own) business
## 1417 Municipality, joint municipal authority
## 1418 Private (or own) business
## 1419 Private (or own) business
## 1420 Private (or own) business
## 1421 Private (or own) business
## 1422 Private (or own) business
## 1423 Private (or own) business
## 1424 Municipality, joint municipal authority
## 1425 Municipality, joint municipal authority
## 1426 Voluntary or civic organisation/association
## 1427 Voluntary or civic organisation/association
## 1428 Private (or own) business
## 1429 Private (or own) business
## 1430 Publicly owned corporation
## 1431 Private (or own) business
## 1432 Publicly owned corporation
## 1433 Private (or own) business
## 1434 Not in paid work
## 1435 Private (or own) business
## 1436 Private (or own) business
## 1437 Private (or own) business
## 1438 Municipality, joint municipal authority
## 1439 Private (or own) business
## 1440 Municipality, joint municipal authority
## 1441 Private (or own) business
## 1442 Private (or own) business
## 1443 Private (or own) business
## 1444 Municipality, joint municipal authority
## 1445 Municipality, joint municipal authority
## 1446 Private (or own) business
## 1447 Not in paid work
## 1448 Voluntary or civic organisation/association
## 1449 Municipality, joint municipal authority
## 1450 Municipality, joint municipal authority
## 1451 State
## 1452 Publicly owned corporation
## 1453 Private (or own) business
## 1454 Private (or own) business
## 1455 Private (or own) business
## 1456 Publicly owned corporation
## 1457 Not in paid work
## 1458 Municipality, joint municipal authority
## 1459 Municipality, joint municipal authority
## 1460 Private (or own) business
## 1461 Private (or own) business
## 1462 Not in paid work
## 1463 State
## 1464 Private (or own) business
## 1465 Private (or own) business
## 1466 Other employer
## 1467 Private (or own) business
## 1468 Private (or own) business
## 1469 Municipality, joint municipal authority
## 1470 Not in paid work
## 1471 Private (or own) business
## 1472 Not in paid work
## 1473 Publicly owned corporation
## 1474 Other employer
## 1475 Private (or own) business
## 1476 Not in paid work
## 1477 Private (or own) business
## 1478 Municipality, joint municipal authority
## 1479 Private (or own) business
## 1480 Private (or own) business
## 1481 Municipality, joint municipal authority
## 1482 Publicly owned corporation
## 1483 State
## 1484 Not in paid work
## 1485 Private (or own) business
## 1486 State
## 1487 Voluntary or civic organisation/association
## 1488 Private (or own) business
## 1489 Voluntary or civic organisation/association
## 1490 Municipality, joint municipal authority
## 1491 Private (or own) business
## 1492 Not in paid work
## 1493 Municipality, joint municipal authority
## 1494 Not in paid work
## 1495 Private (or own) business
## 1496 Publicly owned corporation
## 1497 Private (or own) business
## 1498 Private (or own) business
## 1499 Private (or own) business
## 1500 Private (or own) business
## 1501 Not in paid work
## 1502 Municipality, joint municipal authority
## 1503 Private (or own) business
## 1504 Other employer
## 1505 Voluntary or civic organisation/association
## 1506 Private (or own) business
## 1507 Voluntary or civic organisation/association
## 1508 Private (or own) business
## 1509 Not in paid work
## 1510 Private (or own) business
## 1511 Private (or own) business
## 1512 Private (or own) business
## 1513 Private (or own) business
## 1514 Private (or own) business
## 1515 Voluntary or civic organisation/association
## 1516 Municipality, joint municipal authority
## 1517 Municipality, joint municipal authority
## 1518 Other employer
## 1519 Not in paid work
## 1520 Private (or own) business
## 1521 Municipality, joint municipal authority
## 1522 State
## 1523 Voluntary or civic organisation/association
## 1524 Private (or own) business
## 1525 Voluntary or civic organisation/association
## 1526 Private (or own) business
## 1527 Private (or own) business
## 1528 State
## 1529 Municipality, joint municipal authority
## 1530 Other employer
## 1531 Voluntary or civic organisation/association
## 1532 Voluntary or civic organisation/association
## 1533 Private (or own) business
## 1534 Other employer
## 1535 Private (or own) business
## 1536 Municipality, joint municipal authority
## 1537 State
## 1538 State
## 1539 Private (or own) business
## 1540 Municipality, joint municipal authority
## 1541 Not in paid work
## 1542 Municipality, joint municipal authority
## 1543 Private (or own) business
## 1544 Private (or own) business
## 1545 Private (or own) business
## 1546 Private (or own) business
## 1547 Private (or own) business
## 1548 Other employer
## 1549 Municipality, joint municipal authority
## 1550 Private (or own) business
## 1551 Private (or own) business
## 1552 Private (or own) business
## 1553 Private (or own) business
## 1554 Not in paid work
## 1555 Private (or own) business
## 1556 Private (or own) business
## 1557 Private (or own) business
## 1558 Other employer
## 1559 Private (or own) business
## 1560 Not in paid work
## 1561 Private (or own) business
## 1562 Private (or own) business
## 1563 Private (or own) business
## 1564 Not in paid work
## 1565 Private (or own) business
## 1566 Other employer
## 1567 Municipality, joint municipal authority
## 1568 State
## 1569 Not in paid work
## 1570 Voluntary or civic organisation/association
## 1571 Municipality, joint municipal authority
## 1572 Other employer
## 1573 Municipality, joint municipal authority
## 1574 Publicly owned corporation
## 1575 Private (or own) business
## 1576 Private (or own) business
## 1577 Private (or own) business
## 1578 Not in paid work
## 1579 Not in paid work
## 1580 Not in paid work
## 1581 Other employer
## 1582 Private (or own) business
## 1583 Not in paid work
## 1584 Voluntary or civic organisation/association
## 1585 Municipality, joint municipal authority
## 1586 Municipality, joint municipal authority
## 1587 Voluntary or civic organisation/association
## 1588 Other employer
## 1589 Private (or own) business
## 1590 Not in paid work
## 1591 Private (or own) business
## 1592 Private (or own) business
## 1593 Private (or own) business
## 1594 Not in paid work
## 1595 Private (or own) business
## 1596 Municipality, joint municipal authority
## 1597 State
## 1598 Voluntary or civic organisation/association
## 1599 Private (or own) business
## 1600 Private (or own) business
## 1601 Publicly owned corporation
## 1602 Other employer
## 1603 Municipality, joint municipal authority
## 1604 Municipality, joint municipal authority
## 1605 Private (or own) business
## 1606 Private (or own) business
## 1607 Private (or own) business
## 1608 Not in paid work
## 1609 Municipality, joint municipal authority
## 1610 Voluntary or civic organisation/association
## 1611 Voluntary or civic organisation/association
## 1612 Private (or own) business
## 1613 Private (or own) business
## 1614 Municipality, joint municipal authority
## 1615 State
## 1616 Other employer
## 1617 Private (or own) business
## 1618 Not in paid work
## 1619 Private (or own) business
## 1620 Private (or own) business
## 1621 Private (or own) business
## 1622 Private (or own) business
## 1623 Municipality, joint municipal authority
## 1624 Not in paid work
## 1625 Not in paid work
## 1626 State
## 1627 Private (or own) business
## 1628 Private (or own) business
## 1629 Private (or own) business
## 1630 Publicly owned corporation
## 1631 State
## 1632 Private (or own) business
## 1633 Private (or own) business
## 1634 Not in paid work
## 1635 Publicly owned corporation
## 1636 Private (or own) business
## 1637 Publicly owned corporation
## 1638 State
## 1639 Private (or own) business
## 1640 Private (or own) business
## 1641 Private (or own) business
## 1642 Private (or own) business
## 1643 Private (or own) business
## 1644 Private (or own) business
## 1645 Other employer
## 1646 State
## 1647 Not in paid work
## 1648 Private (or own) business
## 1649 Not in paid work
## 1650 Private (or own) business
## 1651 Municipality, joint municipal authority
## 1652 State
## 1653 Private (or own) business
## 1654 Publicly owned corporation
## 1655 Voluntary or civic organisation/association
## 1656 Private (or own) business
## 1657 Private (or own) business
## 1658 Not in paid work
## 1659 Private (or own) business
## 1660 Municipality, joint municipal authority
## 1661 Other employer
## 1662 Not in paid work
## 1663 Not in paid work
## 1664 Voluntary or civic organisation/association
## 1665 Private (or own) business
## 1666 Private (or own) business
## 1667 Private (or own) business
## 1668 Private (or own) business
## 1669 Not in paid work
## 1670 Municipality, joint municipal authority
## 1671 State
## 1672 Private (or own) business
## 1673 Private (or own) business
## 1674 Private (or own) business
## 1675 Not in paid work
## 1676 Municipality, joint municipal authority
## 1677 Not in paid work
## 1678 Voluntary or civic organisation/association
## 1679 Private (or own) business
## 1680 Private (or own) business
## 1681 State
## 1682 Private (or own) business
## 1683 Private (or own) business
## 1684 Private (or own) business
## 1685 Voluntary or civic organisation/association
## 1686 Not in paid work
## 1687 Not in paid work
## 1688 Not in paid work
## 1689 State
## 1690 Other employer
## 1691 Private (or own) business
## 1692 State
## 1693 State
## 1694 State
## 1695 Private (or own) business
## 1696 Private (or own) business
## 1697 Private (or own) business
## 1698 Private (or own) business
## 1699 Private (or own) business
## 1700 Private (or own) business
## 1701 Municipality, joint municipal authority
## 1702 State
## 1703 Private (or own) business
## 1704 Private (or own) business
## 1705 Private (or own) business
## 1706 Private (or own) business
## 1707 Voluntary or civic organisation/association
## 1708 Municipality, joint municipal authority
## 1709 Not in paid work
## 1710 Not in paid work
## 1711 Not in paid work
## 1712 Private (or own) business
## 1713 Not in paid work
## 1714 State
## 1715 Private (or own) business
## 1716 Other employer
## 1717 State
## 1718 Private (or own) business
## 1719 Voluntary or civic organisation/association
## 1720 Private (or own) business
## 1721 Private (or own) business
## 1722 Private (or own) business
## 1723 Municipality, joint municipal authority
## 1724 Private (or own) business
## 1725 State
## 1726 Municipality, joint municipal authority
## 1727 Not in paid work
## 1728 Voluntary or civic organisation/association
## 1729 Private (or own) business
## 1730 Private (or own) business
## 1731 Publicly owned corporation
## 1732 Publicly owned corporation
## 1733 Other employer
## 1734 Private (or own) business
## 1735 Private (or own) business
## 1736 Publicly owned corporation
## 1737 Municipality, joint municipal authority
## 1738 Private (or own) business
## 1739 Municipality, joint municipal authority
## 1740 Private (or own) business
## 1741 Publicly owned corporation
## 1742 Publicly owned corporation
## 1743 Not in paid work
## 1744 Private (or own) business
## 1745 Not in paid work
## 1746 Voluntary or civic organisation/association
## 1747 Private (or own) business
## 1748 Private (or own) business
## 1749 Private (or own) business
## 1750 Publicly owned corporation
## 1751 Private (or own) business
## 1752 Private (or own) business
## 1753 Private (or own) business
## 1754 Voluntary or civic organisation/association
## 1755 Other employer
## 1756 Not in paid work
## 1757 Private (or own) business
## 1758 Private (or own) business
## 1759 Private (or own) business
## 1760 Private (or own) business
## 1761 Private (or own) business
## 1762 Private (or own) business
## 1763 Publicly owned corporation
## 1764 Municipality, joint municipal authority
## 1765 Private (or own) business
## 1766 Publicly owned corporation
## 1767 Municipality, joint municipal authority
## 1768 Voluntary or civic organisation/association
## 1769 Municipality, joint municipal authority
## 1770 Publicly owned corporation
## 1771 Private (or own) business
## 1772 Publicly owned corporation
## 1773 Municipality, joint municipal authority
## 1774 Voluntary or civic organisation/association
## 1775 Other employer
## 1776 Municipality, joint municipal authority
## 1777 Voluntary or civic organisation/association
## 1778 Private (or own) business
## 1779 Private (or own) business
## 1780 Voluntary or civic organisation/association
## 1781 Publicly owned corporation
## 1782 Private (or own) business
## 1783 Private (or own) business
## 1784 Other employer
## 1785 Private (or own) business
## 1786 Private (or own) business
## 1787 State
## 1788 Private (or own) business
## 1789 Not in paid work
## 1790 Not in paid work
## 1791 Municipality, joint municipal authority
## 1792 Private (or own) business
## 1793 Private (or own) business
## 1794 Private (or own) business
## 1795 State
## 1796 Private (or own) business
## 1797 Private (or own) business
## 1798 State
## 1799 Private (or own) business
## 1800 Private (or own) business
## 1801 Not in paid work
## 1802 Private (or own) business
## 1803 Private (or own) business
## 1804 Municipality, joint municipal authority
## 1805 Private (or own) business
## 1806 Private (or own) business
## 1807 Not in paid work
## 1808 Private (or own) business
## 1809 Private (or own) business
## 1810 Private (or own) business
## 1811 Private (or own) business
## 1812 Private (or own) business
## 1813 Private (or own) business
## 1814 Voluntary or civic organisation/association
## 1815 Municipality, joint municipal authority
## 1816 Municipality, joint municipal authority
## 1817 Private (or own) business
## 1818 Not in paid work
## 1819 Municipality, joint municipal authority
## 1820 Private (or own) business
## 1821 Not in paid work
## 1822 Other employer
## 1823 Private (or own) business
## 1824 Private (or own) business
## 1825 Private (or own) business
## 1826 Private (or own) business
## 1827 Private (or own) business
## 1828 Private (or own) business
## 1829 Voluntary or civic organisation/association
## 1830 Municipality, joint municipal authority
## 1831 Private (or own) business
## 1832 Voluntary or civic organisation/association
## 1833 Voluntary or civic organisation/association
## 1834 Municipality, joint municipal authority
## 1835 Private (or own) business
## 1836 Private (or own) business
## 1837 Private (or own) business
## 1838 Municipality, joint municipal authority
## 1839 Private (or own) business
## 1840 Private (or own) business
## 1841 Private (or own) business
## 1842 Private (or own) business
## 1843 Not in paid work
## 1844 Municipality, joint municipal authority
## 1845 Municipality, joint municipal authority
## 1846 Private (or own) business
## 1847 Private (or own) business
## 1848 Municipality, joint municipal authority
## 1849 Private (or own) business
## 1850 Private (or own) business
## 1851 Publicly owned corporation
## 1852 State
## 1853 Other employer
## 1854 Municipality, joint municipal authority
## 1855 State
## 1856 Municipality, joint municipal authority
## 1857 Not in paid work
## 1858 Private (or own) business
## 1859 Municipality, joint municipal authority
## 1860 Other employer
## 1861 Private (or own) business
## 1862 Private (or own) business
## 1863 Private (or own) business
## 1864 Private (or own) business
## 1865 Private (or own) business
## 1866 Private (or own) business
## 1867 State
## 1868 Municipality, joint municipal authority
## 1869 Publicly owned corporation
## 1870 Not in paid work
## 1871 Private (or own) business
## 1872 Private (or own) business
## 1873 Municipality, joint municipal authority
## 1874 Private (or own) business
## 1875 Private (or own) business
## 1876 State
## 1877 Private (or own) business
## 1878 Private (or own) business
## 1879 Private (or own) business
## 1880 Private (or own) business
## 1881 Private (or own) business
## 1882 Private (or own) business
## 1883 Private (or own) business
## 1884 Private (or own) business
## 1885 Private (or own) business
## 1886 State
## 1887 Private (or own) business
## 1888 Not in paid work
## 1889 Municipality, joint municipal authority
## 1890 Not in paid work
## 1891 Private (or own) business
## 1892 Private (or own) business
## 1893 Municipality, joint municipal authority
## 1894 Publicly owned corporation
## 1895 Municipality, joint municipal authority
## 1896 Municipality, joint municipal authority
## 1897 Not in paid work
## 1898 Private (or own) business
## 1899 Private (or own) business
## 1900 State
## 1901 Private (or own) business
## 1902 Municipality, joint municipal authority
## 1903 Municipality, joint municipal authority
## 1904 Private (or own) business
## 1905 Other employer
## 1906 Private (or own) business
## 1907 Not in paid work
## 1908 Private (or own) business
## 1909 Private (or own) business
## 1910 Private (or own) business
## 1911 Private (or own) business
## 1912 Private (or own) business
## 1913 Private (or own) business
## 1914 Private (or own) business
## 1915 Private (or own) business
## 1916 Private (or own) business
## 1917 Private (or own) business
## 1918 Other employer
## 1919 Voluntary or civic organisation/association
## 1920 Private (or own) business
## 1921 Municipality, joint municipal authority
## 1922 Not in paid work
## 1923 Private (or own) business
## 1924 State
## 1925 Publicly owned corporation
## 1926 Private (or own) business
## 1927 Private (or own) business
## 1928 Private (or own) business
## 1929 Private (or own) business
## 1930 Private (or own) business
## 1931 State
## 1932 Not in paid work
## 1933 Private (or own) business
## 1934 Private (or own) business
## 1935 Private (or own) business
## 1936 Private (or own) business
## 1937 Municipality, joint municipal authority
## 1938 Not in paid work
## work_hour work_contract
## 1 Full-time Permanent or indefinite contract
## 2 Full-time Permanent or indefinite contract
## 3 Full-time Permanent or indefinite contract
## 4 Part-time Fixed-term
## 5 Full-time Permanent or indefinite contract
## 6 Full-time Permanent or indefinite contract
## 7 Other working hours Permanent or indefinite contract
## 8 Full-time Permanent or indefinite contract
## 9 Full-time Permanent or indefinite contract
## 10 Other working hours Permanent or indefinite contract
## 11 Other working hours Fixed-term
## 12 Full-time Permanent or indefinite contract
## 13 Other working hours Permanent or indefinite contract
## 14 Full-time Permanent or indefinite contract
## 15 Part-time Permanent or indefinite contract
## 16 Full-time Permanent or indefinite contract
## 17 <NA> <NA>
## 18 <NA> <NA>
## 19 Full-time Permanent or indefinite contract
## 20 Other working hours Fixed-term
## 21 Full-time Permanent or indefinite contract
## 22 Full-time Permanent or indefinite contract
## 23 Full-time Permanent or indefinite contract
## 24 Part-time Permanent or indefinite contract
## 25 Full-time Permanent or indefinite contract
## 26 Other working hours Fixed-term
## 27 Full-time Permanent or indefinite contract
## 28 Part-time Fixed-term
## 29 Full-time Permanent or indefinite contract
## 30 Full-time Permanent or indefinite contract
## 31 Full-time Permanent or indefinite contract
## 32 Full-time Permanent or indefinite contract
## 33 Full-time Permanent or indefinite contract
## 34 Full-time Permanent or indefinite contract
## 35 Full-time Permanent or indefinite contract
## 36 Other working hours Permanent or indefinite contract
## 37 Full-time Permanent or indefinite contract
## 38 Full-time Permanent or indefinite contract
## 39 Half-time (around 20 hours a week) Permanent or indefinite contract
## 40 Other working hours Permanent or indefinite contract
## 41 Other working hours Permanent or indefinite contract
## 42 Other working hours Permanent or indefinite contract
## 43 Full-time Permanent or indefinite contract
## 44 Full-time Permanent or indefinite contract
## 45 Other working hours Fixed-term
## 46 <NA> <NA>
## 47 Full-time Permanent or indefinite contract
## 48 Full-time Permanent or indefinite contract
## 49 Other working hours Permanent or indefinite contract
## 50 Full-time Permanent or indefinite contract
## 51 Full-time Permanent or indefinite contract
## 52 Full-time Permanent or indefinite contract
## 53 Full-time Fixed-term
## 54 Other working hours Fixed-term
## 55 Full-time Permanent or indefinite contract
## 56 Full-time Permanent or indefinite contract
## 57 Other working hours Fixed-term
## 58 Full-time Permanent or indefinite contract
## 59 Full-time Permanent or indefinite contract
## 60 Full-time Permanent or indefinite contract
## 61 Full-time Permanent or indefinite contract
## 62 Full-time Permanent or indefinite contract
## 63 Other working hours Permanent or indefinite contract
## 64 <NA> <NA>
## 65 Other working hours Permanent or indefinite contract
## 66 Full-time Permanent or indefinite contract
## 67 Other working hours Permanent or indefinite contract
## 68 Full-time Permanent or indefinite contract
## 69 Part-time Fixed-term
## 70 Full-time Permanent or indefinite contract
## 71 Full-time Permanent or indefinite contract
## 72 Full-time Permanent or indefinite contract
## 73 Full-time Permanent or indefinite contract
## 74 Full-time Permanent or indefinite contract
## 75 Full-time Permanent or indefinite contract
## 76 Full-time Permanent or indefinite contract
## 77 Other working hours Permanent or indefinite contract
## 78 Full-time Permanent or indefinite contract
## 79 Other working hours Permanent or indefinite contract
## 80 Other working hours Fixed-term
## 81 Other working hours Permanent or indefinite contract
## 82 Full-time Permanent or indefinite contract
## 83 Part-time Fixed-term
## 84 Full-time Fixed-term
## 85 Other working hours Permanent or indefinite contract
## 86 Other working hours Permanent or indefinite contract
## 87 Full-time Permanent or indefinite contract
## 88 Other working hours Fixed-term
## 89 Full-time Permanent or indefinite contract
## 90 Part-time Permanent or indefinite contract
## 91 <NA> <NA>
## 92 Full-time Permanent or indefinite contract
## 93 Full-time Permanent or indefinite contract
## 94 Full-time Fixed-term
## 95 Full-time Permanent or indefinite contract
## 96 Other working hours Permanent or indefinite contract
## 97 Full-time Fixed-term
## 98 Full-time Permanent or indefinite contract
## 99 Full-time Permanent or indefinite contract
## 100 Full-time Permanent or indefinite contract
## 101 Part-time Fixed-term
## 102 Full-time Permanent or indefinite contract
## 103 Other working hours Permanent or indefinite contract
## 104 Full-time Permanent or indefinite contract
## 105 Full-time Permanent or indefinite contract
## 106 Full-time Permanent or indefinite contract
## 107 Full-time Permanent or indefinite contract
## 108 <NA> <NA>
## 109 <NA> <NA>
## 110 Full-time Permanent or indefinite contract
## 111 Other working hours Permanent or indefinite contract
## 112 Part-time Permanent or indefinite contract
## 113 Full-time Permanent or indefinite contract
## 114 Full-time Permanent or indefinite contract
## 115 Full-time Permanent or indefinite contract
## 116 Full-time Permanent or indefinite contract
## 117 Full-time Permanent or indefinite contract
## 118 Full-time Permanent or indefinite contract
## 119 Other working hours Fixed-term
## 120 Full-time Permanent or indefinite contract
## 121 Full-time Permanent or indefinite contract
## 122 Other working hours Fixed-term
## 123 Full-time Permanent or indefinite contract
## 124 Part-time Fixed-term
## 125 Full-time Permanent or indefinite contract
## 126 Other working hours Permanent or indefinite contract
## 127 Full-time Permanent or indefinite contract
## 128 Full-time Fixed-term
## 129 Other working hours Fixed-term
## 130 Full-time Fixed-term
## 131 Full-time Permanent or indefinite contract
## 132 <NA> <NA>
## 133 Full-time Permanent or indefinite contract
## 134 Full-time Permanent or indefinite contract
## 135 Full-time Permanent or indefinite contract
## 136 Full-time Permanent or indefinite contract
## 137 Full-time Permanent or indefinite contract
## 138 Full-time Fixed-term
## 139 Full-time Permanent or indefinite contract
## 140 Full-time Permanent or indefinite contract
## 141 Other working hours Fixed-term
## 142 Other working hours Permanent or indefinite contract
## 143 Full-time Permanent or indefinite contract
## 144 Part-time Permanent or indefinite contract
## 145 Part-time Permanent or indefinite contract
## 146 Full-time Permanent or indefinite contract
## 147 Other working hours Permanent or indefinite contract
## 148 Other working hours Fixed-term
## 149 Other working hours Fixed-term
## 150 Full-time Permanent or indefinite contract
## 151 Half-time (around 20 hours a week) Fixed-term
## 152 Other working hours Fixed-term
## 153 Other working hours Fixed-term
## 154 Full-time Fixed-term
## 155 Other working hours Fixed-term
## 156 Full-time Fixed-term
## 157 Full-time Permanent or indefinite contract
## 158 <NA> <NA>
## 159 Part-time Fixed-term
## 160 Full-time Permanent or indefinite contract
## 161 Other working hours Fixed-term
## 162 Part-time Permanent or indefinite contract
## 163 Full-time Permanent or indefinite contract
## 164 Full-time Permanent or indefinite contract
## 165 Full-time Permanent or indefinite contract
## 166 Other working hours Fixed-term
## 167 Part-time Fixed-term
## 168 Full-time Permanent or indefinite contract
## 169 <NA> <NA>
## 170 Full-time Permanent or indefinite contract
## 171 Other working hours Fixed-term
## 172 Other working hours Fixed-term
## 173 Full-time Permanent or indefinite contract
## 174 Full-time Permanent or indefinite contract
## 175 Other working hours Fixed-term
## 176 Full-time Permanent or indefinite contract
## 177 Other working hours Fixed-term
## 178 Full-time Fixed-term
## 179 Full-time Permanent or indefinite contract
## 180 Part-time Permanent or indefinite contract
## 181 <NA> <NA>
## 182 Full-time Permanent or indefinite contract
## 183 Other working hours Permanent or indefinite contract
## 184 <NA> <NA>
## 185 Full-time Permanent or indefinite contract
## 186 Other working hours Permanent or indefinite contract
## 187 <NA> <NA>
## 188 Part-time Fixed-term
## 189 Other working hours Permanent or indefinite contract
## 190 Full-time Permanent or indefinite contract
## 191 Full-time Fixed-term
## 192 Other working hours Permanent or indefinite contract
## 193 Full-time Permanent or indefinite contract
## 194 Full-time Fixed-term
## 195 Full-time Permanent or indefinite contract
## 196 Full-time Permanent or indefinite contract
## 197 Full-time Permanent or indefinite contract
## 198 <NA> <NA>
## 199 Full-time Permanent or indefinite contract
## 200 Full-time Permanent or indefinite contract
## 201 Full-time Permanent or indefinite contract
## 202 Full-time Permanent or indefinite contract
## 203 Full-time Permanent or indefinite contract
## 204 Full-time Permanent or indefinite contract
## 205 Other working hours Fixed-term
## 206 Full-time Permanent or indefinite contract
## 207 Full-time Permanent or indefinite contract
## 208 Full-time Permanent or indefinite contract
## 209 Full-time Permanent or indefinite contract
## 210 Part-time Fixed-term
## 211 Other working hours Permanent or indefinite contract
## 212 Full-time Permanent or indefinite contract
## 213 Full-time Permanent or indefinite contract
## 214 Full-time Permanent or indefinite contract
## 215 Other working hours Permanent or indefinite contract
## 216 Other working hours Permanent or indefinite contract
## 217 Other working hours Permanent or indefinite contract
## 218 Full-time Permanent or indefinite contract
## 219 Part-time Permanent or indefinite contract
## 220 Other working hours Permanent or indefinite contract
## 221 Full-time Permanent or indefinite contract
## 222 Full-time Permanent or indefinite contract
## 223 Full-time Permanent or indefinite contract
## 224 Full-time Permanent or indefinite contract
## 225 Full-time Permanent or indefinite contract
## 226 Full-time Permanent or indefinite contract
## 227 Other working hours Permanent or indefinite contract
## 228 Other working hours Permanent or indefinite contract
## 229 Other working hours Fixed-term
## 230 Other working hours Fixed-term
## 231 Full-time Permanent or indefinite contract
## 232 Full-time Permanent or indefinite contract
## 233 Full-time Permanent or indefinite contract
## 234 Other working hours Permanent or indefinite contract
## 235 <NA> <NA>
## 236 Full-time Permanent or indefinite contract
## 237 Full-time Permanent or indefinite contract
## 238 Full-time Permanent or indefinite contract
## 239 Other working hours Permanent or indefinite contract
## 240 Full-time Fixed-term
## 241 Other working hours Permanent or indefinite contract
## 242 Full-time Permanent or indefinite contract
## 243 Full-time Fixed-term
## 244 Other working hours Permanent or indefinite contract
## 245 Full-time Permanent or indefinite contract
## 246 Full-time Permanent or indefinite contract
## 247 Full-time Permanent or indefinite contract
## 248 Other working hours Permanent or indefinite contract
## 249 Full-time Permanent or indefinite contract
## 250 <NA> <NA>
## 251 Full-time Permanent or indefinite contract
## 252 Other working hours Fixed-term
## 253 Other working hours Fixed-term
## 254 Part-time Permanent or indefinite contract
## 255 Other working hours Permanent or indefinite contract
## 256 Full-time Permanent or indefinite contract
## 257 Full-time Permanent or indefinite contract
## 258 Full-time Fixed-term
## 259 Part-time Permanent or indefinite contract
## 260 Full-time Fixed-term
## 261 Other working hours Permanent or indefinite contract
## 262 Other working hours Permanent or indefinite contract
## 263 Other working hours Fixed-term
## 264 Full-time Permanent or indefinite contract
## 265 <NA> <NA>
## 266 Full-time Permanent or indefinite contract
## 267 Full-time Permanent or indefinite contract
## 268 Full-time Permanent or indefinite contract
## 269 Other working hours Fixed-term
## 270 Other working hours Permanent or indefinite contract
## 271 Full-time Permanent or indefinite contract
## 272 Full-time Permanent or indefinite contract
## 273 Other working hours Fixed-term
## 274 Full-time Permanent or indefinite contract
## 275 <NA> <NA>
## 276 Full-time Permanent or indefinite contract
## 277 Other working hours Permanent or indefinite contract
## 278 Full-time Permanent or indefinite contract
## 279 Other working hours Permanent or indefinite contract
## 280 Full-time Permanent or indefinite contract
## 281 Full-time Permanent or indefinite contract
## 282 Full-time Permanent or indefinite contract
## 283 <NA> <NA>
## 284 Full-time Permanent or indefinite contract
## 285 <NA> <NA>
## 286 Full-time Permanent or indefinite contract
## 287 Other working hours Permanent or indefinite contract
## 288 Other working hours Fixed-term
## 289 Other working hours Permanent or indefinite contract
## 290 Full-time Fixed-term
## 291 Full-time Permanent or indefinite contract
## 292 <NA> <NA>
## 293 Other working hours Fixed-term
## 294 Other working hours Permanent or indefinite contract
## 295 Part-time Permanent or indefinite contract
## 296 Other working hours Permanent or indefinite contract
## 297 Full-time Permanent or indefinite contract
## 298 Other working hours Permanent or indefinite contract
## 299 Full-time Permanent or indefinite contract
## 300 Other working hours Permanent or indefinite contract
## 301 <NA> <NA>
## 302 Other working hours Permanent or indefinite contract
## 303 Other working hours Permanent or indefinite contract
## 304 Other working hours Fixed-term
## 305 Other working hours Permanent or indefinite contract
## 306 Full-time Permanent or indefinite contract
## 307 Full-time Fixed-term
## 308 <NA> <NA>
## 309 Full-time Permanent or indefinite contract
## 310 Other working hours Permanent or indefinite contract
## 311 Full-time Permanent or indefinite contract
## 312 Full-time Permanent or indefinite contract
## 313 Other working hours Fixed-term
## 314 Other working hours Fixed-term
## 315 Other working hours Fixed-term
## 316 Other working hours Permanent or indefinite contract
## 317 Part-time Permanent or indefinite contract
## 318 Other working hours Permanent or indefinite contract
## 319 Full-time Permanent or indefinite contract
## 320 Other working hours Fixed-term
## 321 Other working hours Fixed-term
## 322 Other working hours Permanent or indefinite contract
## 323 Full-time Permanent or indefinite contract
## 324 Part-time Permanent or indefinite contract
## 325 Full-time Permanent or indefinite contract
## 326 Full-time Permanent or indefinite contract
## 327 Other working hours Permanent or indefinite contract
## 328 Other working hours Permanent or indefinite contract
## 329 <NA> <NA>
## 330 Part-time Fixed-term
## 331 Other working hours Permanent or indefinite contract
## 332 <NA> <NA>
## 333 Full-time Permanent or indefinite contract
## 334 Full-time Permanent or indefinite contract
## 335 Other working hours Fixed-term
## 336 Full-time Permanent or indefinite contract
## 337 Other working hours Permanent or indefinite contract
## 338 Other working hours Fixed-term
## 339 Full-time Permanent or indefinite contract
## 340 Full-time Permanent or indefinite contract
## 341 Full-time Permanent or indefinite contract
## 342 Full-time Permanent or indefinite contract
## 343 Other working hours Fixed-term
## 344 Full-time Permanent or indefinite contract
## 345 Full-time Permanent or indefinite contract
## 346 Other working hours Permanent or indefinite contract
## 347 <NA> <NA>
## 348 Full-time Permanent or indefinite contract
## 349 Full-time Permanent or indefinite contract
## 350 Other working hours Permanent or indefinite contract
## 351 Full-time Permanent or indefinite contract
## 352 Other working hours Fixed-term
## 353 Full-time Permanent or indefinite contract
## 354 Other working hours Fixed-term
## 355 Full-time Permanent or indefinite contract
## 356 Other working hours Fixed-term
## 357 Full-time Permanent or indefinite contract
## 358 Full-time Permanent or indefinite contract
## 359 Other working hours Fixed-term
## 360 Full-time Permanent or indefinite contract
## 361 Other working hours Permanent or indefinite contract
## 362 Full-time Permanent or indefinite contract
## 363 Full-time Permanent or indefinite contract
## 364 Full-time Permanent or indefinite contract
## 365 Full-time Permanent or indefinite contract
## 366 Full-time Permanent or indefinite contract
## 367 Full-time Permanent or indefinite contract
## 368 Full-time Permanent or indefinite contract
## 369 Full-time Permanent or indefinite contract
## 370 Full-time Fixed-term
## 371 Other working hours Permanent or indefinite contract
## 372 Full-time Permanent or indefinite contract
## 373 Other working hours Permanent or indefinite contract
## 374 Full-time Permanent or indefinite contract
## 375 Other working hours Fixed-term
## 376 <NA> <NA>
## 377 Part-time Permanent or indefinite contract
## 378 Full-time Permanent or indefinite contract
## 379 Full-time Permanent or indefinite contract
## 380 Full-time Permanent or indefinite contract
## 381 Full-time Permanent or indefinite contract
## 382 Full-time Permanent or indefinite contract
## 383 Other working hours Fixed-term
## 384 Other working hours Permanent or indefinite contract
## 385 Other working hours Permanent or indefinite contract
## 386 Part-time Permanent or indefinite contract
## 387 Full-time Permanent or indefinite contract
## 388 Other working hours Permanent or indefinite contract
## 389 Other working hours Fixed-term
## 390 Part-time Fixed-term
## 391 Full-time Permanent or indefinite contract
## 392 Full-time Fixed-term
## 393 Other working hours Permanent or indefinite contract
## 394 Full-time Fixed-term
## 395 Other working hours Permanent or indefinite contract
## 396 Other working hours Permanent or indefinite contract
## 397 Other working hours Permanent or indefinite contract
## 398 Other working hours Fixed-term
## 399 Full-time Permanent or indefinite contract
## 400 Full-time Permanent or indefinite contract
## 401 Other working hours Permanent or indefinite contract
## 402 Other working hours Fixed-term
## 403 Full-time Permanent or indefinite contract
## 404 Other working hours Permanent or indefinite contract
## 405 Full-time Permanent or indefinite contract
## 406 <NA> <NA>
## 407 Other working hours Permanent or indefinite contract
## 408 Full-time Permanent or indefinite contract
## 409 Other working hours Fixed-term
## 410 Part-time Permanent or indefinite contract
## 411 Other working hours Permanent or indefinite contract
## 412 <NA> <NA>
## 413 Full-time Permanent or indefinite contract
## 414 Other working hours Permanent or indefinite contract
## 415 Other working hours Permanent or indefinite contract
## 416 <NA> <NA>
## 417 Full-time Permanent or indefinite contract
## 418 Full-time Permanent or indefinite contract
## 419 Other working hours Permanent or indefinite contract
## 420 Other working hours Permanent or indefinite contract
## 421 Other working hours Permanent or indefinite contract
## 422 Full-time Permanent or indefinite contract
## 423 Other working hours Fixed-term
## 424 Part-time Permanent or indefinite contract
## 425 Full-time Fixed-term
## 426 Full-time Permanent or indefinite contract
## 427 Full-time Permanent or indefinite contract
## 428 Other working hours Fixed-term
## 429 Full-time Permanent or indefinite contract
## 430 Full-time Fixed-term
## 431 Full-time Permanent or indefinite contract
## 432 <NA> <NA>
## 433 Full-time Fixed-term
## 434 Other working hours Fixed-term
## 435 Full-time Permanent or indefinite contract
## 436 Other working hours Permanent or indefinite contract
## 437 Other working hours Fixed-term
## 438 Other working hours Fixed-term
## 439 <NA> <NA>
## 440 Part-time Permanent or indefinite contract
## 441 Full-time Permanent or indefinite contract
## 442 Other working hours Permanent or indefinite contract
## 443 Other working hours Fixed-term
## 444 <NA> <NA>
## 445 <NA> <NA>
## 446 Full-time Permanent or indefinite contract
## 447 Full-time Permanent or indefinite contract
## 448 Full-time Permanent or indefinite contract
## 449 Other working hours Permanent or indefinite contract
## 450 Full-time Fixed-term
## 451 Full-time Permanent or indefinite contract
## 452 Other working hours Permanent or indefinite contract
## 453 Full-time Permanent or indefinite contract
## 454 Full-time Permanent or indefinite contract
## 455 Part-time Permanent or indefinite contract
## 456 Part-time Permanent or indefinite contract
## 457 Full-time Permanent or indefinite contract
## 458 Full-time Permanent or indefinite contract
## 459 Other working hours Fixed-term
## 460 Part-time Fixed-term
## 461 Other working hours Permanent or indefinite contract
## 462 <NA> <NA>
## 463 Other working hours Fixed-term
## 464 Other working hours Fixed-term
## 465 Full-time Permanent or indefinite contract
## 466 Full-time Permanent or indefinite contract
## 467 Full-time Permanent or indefinite contract
## 468 Other working hours Fixed-term
## 469 <NA> <NA>
## 470 <NA> <NA>
## 471 Full-time Permanent or indefinite contract
## 472 Full-time Permanent or indefinite contract
## 473 Other working hours Permanent or indefinite contract
## 474 Other working hours Permanent or indefinite contract
## 475 Other working hours Permanent or indefinite contract
## 476 Full-time Permanent or indefinite contract
## 477 Other working hours Permanent or indefinite contract
## 478 Other working hours Permanent or indefinite contract
## 479 Other working hours Permanent or indefinite contract
## 480 Full-time Permanent or indefinite contract
## 481 <NA> <NA>
## 482 Full-time Permanent or indefinite contract
## 483 Full-time Permanent or indefinite contract
## 484 Half-time (around 20 hours a week) Permanent or indefinite contract
## 485 Full-time Permanent or indefinite contract
## 486 Part-time Permanent or indefinite contract
## 487 Half-time (around 20 hours a week) Permanent or indefinite contract
## 488 Full-time Permanent or indefinite contract
## 489 Other working hours Fixed-term
## 490 Other working hours Permanent or indefinite contract
## 491 Full-time Permanent or indefinite contract
## 492 Full-time Permanent or indefinite contract
## 493 Part-time Permanent or indefinite contract
## 494 Full-time Permanent or indefinite contract
## 495 Other working hours Fixed-term
## 496 Full-time Permanent or indefinite contract
## 497 Other working hours Fixed-term
## 498 Full-time Permanent or indefinite contract
## 499 Full-time Permanent or indefinite contract
## 500 Other working hours Fixed-term
## 501 Other working hours Permanent or indefinite contract
## 502 Other working hours Permanent or indefinite contract
## 503 Full-time Permanent or indefinite contract
## 504 Other working hours Fixed-term
## 505 Other working hours Permanent or indefinite contract
## 506 Other working hours Fixed-term
## 507 Other working hours Permanent or indefinite contract
## 508 Full-time Permanent or indefinite contract
## 509 Full-time Permanent or indefinite contract
## 510 Other working hours Fixed-term
## 511 Other working hours Permanent or indefinite contract
## 512 <NA> <NA>
## 513 Other working hours Fixed-term
## 514 Full-time Permanent or indefinite contract
## 515 Full-time Permanent or indefinite contract
## 516 <NA> <NA>
## 517 Full-time Permanent or indefinite contract
## 518 Full-time Permanent or indefinite contract
## 519 Full-time Permanent or indefinite contract
## 520 Other working hours Permanent or indefinite contract
## 521 Full-time Permanent or indefinite contract
## 522 Other working hours Fixed-term
## 523 Full-time Permanent or indefinite contract
## 524 Other working hours Permanent or indefinite contract
## 525 Other working hours Fixed-term
## 526 Full-time Permanent or indefinite contract
## 527 <NA> <NA>
## 528 Other working hours Fixed-term
## 529 Full-time Permanent or indefinite contract
## 530 Full-time Permanent or indefinite contract
## 531 Full-time Permanent or indefinite contract
## 532 Other working hours Permanent or indefinite contract
## 533 Full-time Permanent or indefinite contract
## 534 Other working hours Permanent or indefinite contract
## 535 Other working hours Permanent or indefinite contract
## 536 Full-time Permanent or indefinite contract
## 537 Full-time Permanent or indefinite contract
## 538 Full-time Permanent or indefinite contract
## 539 Other working hours Permanent or indefinite contract
## 540 Full-time Permanent or indefinite contract
## 541 Part-time Permanent or indefinite contract
## 542 <NA> <NA>
## 543 Other working hours Fixed-term
## 544 Full-time Permanent or indefinite contract
## 545 Full-time Permanent or indefinite contract
## 546 Full-time Permanent or indefinite contract
## 547 Full-time Permanent or indefinite contract
## 548 Other working hours Fixed-term
## 549 Half-time (around 20 hours a week) Permanent or indefinite contract
## 550 Full-time Permanent or indefinite contract
## 551 Other working hours Permanent or indefinite contract
## 552 Full-time Permanent or indefinite contract
## 553 Other working hours Permanent or indefinite contract
## 554 Other working hours Fixed-term
## 555 Half-time (around 20 hours a week) Permanent or indefinite contract
## 556 Full-time Permanent or indefinite contract
## 557 Full-time Permanent or indefinite contract
## 558 Full-time Permanent or indefinite contract
## 559 Other working hours Permanent or indefinite contract
## 560 Full-time Permanent or indefinite contract
## 561 Full-time Permanent or indefinite contract
## 562 Other working hours Permanent or indefinite contract
## 563 Other working hours Permanent or indefinite contract
## 564 Full-time Permanent or indefinite contract
## 565 Full-time Permanent or indefinite contract
## 566 Other working hours Fixed-term
## 567 Other working hours Fixed-term
## 568 Full-time Permanent or indefinite contract
## 569 <NA> <NA>
## 570 Full-time Permanent or indefinite contract
## 571 <NA> <NA>
## 572 Other working hours Fixed-term
## 573 Full-time Permanent or indefinite contract
## 574 Full-time Fixed-term
## 575 Other working hours Permanent or indefinite contract
## 576 Other working hours Permanent or indefinite contract
## 577 Other working hours Fixed-term
## 578 Half-time (around 20 hours a week) Permanent or indefinite contract
## 579 Other working hours Permanent or indefinite contract
## 580 Other working hours Permanent or indefinite contract
## 581 Other working hours Permanent or indefinite contract
## 582 Other working hours Permanent or indefinite contract
## 583 Full-time Permanent or indefinite contract
## 584 Other working hours Permanent or indefinite contract
## 585 Other working hours Fixed-term
## 586 <NA> <NA>
## 587 Full-time Permanent or indefinite contract
## 588 Full-time Permanent or indefinite contract
## 589 Part-time Fixed-term
## 590 Other working hours Permanent or indefinite contract
## 591 Other working hours Fixed-term
## 592 Full-time Permanent or indefinite contract
## 593 <NA> <NA>
## 594 <NA> <NA>
## 595 Full-time Permanent or indefinite contract
## 596 Part-time Permanent or indefinite contract
## 597 Other working hours Fixed-term
## 598 Other working hours Permanent or indefinite contract
## 599 Part-time Permanent or indefinite contract
## 600 Other working hours Fixed-term
## 601 Full-time Permanent or indefinite contract
## 602 Full-time Permanent or indefinite contract
## 603 Full-time Permanent or indefinite contract
## 604 Full-time Permanent or indefinite contract
## 605 Full-time Permanent or indefinite contract
## 606 Other working hours Fixed-term
## 607 Full-time Permanent or indefinite contract
## 608 Full-time Permanent or indefinite contract
## 609 <NA> <NA>
## 610 Full-time Permanent or indefinite contract
## 611 Full-time Permanent or indefinite contract
## 612 <NA> <NA>
## 613 Other working hours Permanent or indefinite contract
## 614 Full-time Permanent or indefinite contract
## 615 Full-time Permanent or indefinite contract
## 616 Full-time Fixed-term
## 617 Other working hours Permanent or indefinite contract
## 618 Full-time Fixed-term
## 619 Full-time Permanent or indefinite contract
## 620 Full-time Fixed-term
## 621 Part-time Permanent or indefinite contract
## 622 Full-time Permanent or indefinite contract
## 623 Full-time Permanent or indefinite contract
## 624 Other working hours Permanent or indefinite contract
## 625 Full-time Permanent or indefinite contract
## 626 Other working hours Permanent or indefinite contract
## 627 Other working hours Fixed-term
## 628 Other working hours Permanent or indefinite contract
## 629 Full-time Permanent or indefinite contract
## 630 Other working hours Fixed-term
## 631 Other working hours Permanent or indefinite contract
## 632 <NA> <NA>
## 633 Full-time Permanent or indefinite contract
## 634 Full-time Permanent or indefinite contract
## 635 Part-time Permanent or indefinite contract
## 636 Part-time Fixed-term
## 637 Other working hours Fixed-term
## 638 Full-time Permanent or indefinite contract
## 639 Full-time Permanent or indefinite contract
## 640 Other working hours Permanent or indefinite contract
## 641 Full-time Permanent or indefinite contract
## 642 Full-time Permanent or indefinite contract
## 643 Other working hours Fixed-term
## 644 Full-time Permanent or indefinite contract
## 645 Full-time Permanent or indefinite contract
## 646 <NA> <NA>
## 647 Other working hours Fixed-term
## 648 Part-time Permanent or indefinite contract
## 649 Other working hours Fixed-term
## 650 Full-time Fixed-term
## 651 Full-time Permanent or indefinite contract
## 652 Other working hours Permanent or indefinite contract
## 653 Full-time Fixed-term
## 654 Part-time Permanent or indefinite contract
## 655 Full-time Permanent or indefinite contract
## 656 Full-time Permanent or indefinite contract
## 657 Other working hours Fixed-term
## 658 <NA> <NA>
## 659 Full-time Permanent or indefinite contract
## 660 Full-time Fixed-term
## 661 Part-time Permanent or indefinite contract
## 662 Full-time Permanent or indefinite contract
## 663 Other working hours Fixed-term
## 664 Part-time Permanent or indefinite contract
## 665 Part-time Permanent or indefinite contract
## 666 Other working hours Permanent or indefinite contract
## 667 <NA> <NA>
## 668 Full-time Permanent or indefinite contract
## 669 Other working hours Fixed-term
## 670 Other working hours Fixed-term
## 671 Other working hours Permanent or indefinite contract
## 672 Other working hours Permanent or indefinite contract
## 673 Other working hours Permanent or indefinite contract
## 674 Full-time Permanent or indefinite contract
## 675 Other working hours Fixed-term
## 676 Part-time Fixed-term
## 677 Full-time Permanent or indefinite contract
## 678 Other working hours Permanent or indefinite contract
## 679 Full-time Permanent or indefinite contract
## 680 Full-time Permanent or indefinite contract
## 681 Full-time Permanent or indefinite contract
## 682 <NA> <NA>
## 683 Other working hours Permanent or indefinite contract
## 684 Part-time Permanent or indefinite contract
## 685 Full-time Permanent or indefinite contract
## 686 Full-time Permanent or indefinite contract
## 687 Part-time Permanent or indefinite contract
## 688 Full-time Permanent or indefinite contract
## 689 Full-time Permanent or indefinite contract
## 690 Other working hours Permanent or indefinite contract
## 691 Full-time Permanent or indefinite contract
## 692 <NA> <NA>
## 693 Other working hours Permanent or indefinite contract
## 694 Full-time Permanent or indefinite contract
## 695 Other working hours Permanent or indefinite contract
## 696 Full-time Permanent or indefinite contract
## 697 Other working hours Permanent or indefinite contract
## 698 Other working hours Permanent or indefinite contract
## 699 Full-time Permanent or indefinite contract
## 700 Other working hours Permanent or indefinite contract
## 701 Full-time Permanent or indefinite contract
## 702 Full-time Permanent or indefinite contract
## 703 Other working hours Fixed-term
## 704 Full-time Permanent or indefinite contract
## 705 Full-time Permanent or indefinite contract
## 706 Half-time (around 20 hours a week) Permanent or indefinite contract
## 707 Part-time Fixed-term
## 708 Full-time Permanent or indefinite contract
## 709 Full-time Permanent or indefinite contract
## 710 Full-time Permanent or indefinite contract
## 711 Other working hours Permanent or indefinite contract
## 712 Other working hours Permanent or indefinite contract
## 713 Other working hours Permanent or indefinite contract
## 714 Part-time Permanent or indefinite contract
## 715 <NA> <NA>
## 716 Other working hours Permanent or indefinite contract
## 717 Full-time Permanent or indefinite contract
## 718 Full-time Permanent or indefinite contract
## 719 <NA> <NA>
## 720 Other working hours Fixed-term
## 721 Other working hours Fixed-term
## 722 Full-time Permanent or indefinite contract
## 723 Full-time Permanent or indefinite contract
## 724 <NA> <NA>
## 725 Other working hours Permanent or indefinite contract
## 726 Full-time Permanent or indefinite contract
## 727 Full-time Permanent or indefinite contract
## 728 Other working hours Fixed-term
## 729 Part-time Fixed-term
## 730 Full-time Permanent or indefinite contract
## 731 Other working hours Fixed-term
## 732 Other working hours Permanent or indefinite contract
## 733 Other working hours Permanent or indefinite contract
## 734 <NA> <NA>
## 735 Full-time Permanent or indefinite contract
## 736 Full-time Permanent or indefinite contract
## 737 Other working hours Permanent or indefinite contract
## 738 Other working hours Permanent or indefinite contract
## 739 Other working hours Permanent or indefinite contract
## 740 Other working hours Fixed-term
## 741 Other working hours Permanent or indefinite contract
## 742 Other working hours Permanent or indefinite contract
## 743 <NA> <NA>
## 744 Full-time Permanent or indefinite contract
## 745 Full-time Permanent or indefinite contract
## 746 Full-time Fixed-term
## 747 Full-time Permanent or indefinite contract
## 748 Full-time Permanent or indefinite contract
## 749 Other working hours Fixed-term
## 750 Other working hours Fixed-term
## 751 Full-time Permanent or indefinite contract
## 752 Other working hours Permanent or indefinite contract
## 753 Full-time Permanent or indefinite contract
## 754 Part-time Fixed-term
## 755 Full-time Permanent or indefinite contract
## 756 Full-time Permanent or indefinite contract
## 757 Full-time Permanent or indefinite contract
## 758 Full-time Permanent or indefinite contract
## 759 Other working hours Permanent or indefinite contract
## 760 Other working hours Fixed-term
## 761 Other working hours Permanent or indefinite contract
## 762 Other working hours Permanent or indefinite contract
## 763 Full-time Permanent or indefinite contract
## 764 Part-time Permanent or indefinite contract
## 765 Other working hours Fixed-term
## 766 Full-time Permanent or indefinite contract
## 767 Full-time Permanent or indefinite contract
## 768 Full-time Permanent or indefinite contract
## 769 <NA> <NA>
## 770 Other working hours Fixed-term
## 771 Full-time Permanent or indefinite contract
## 772 Half-time (around 20 hours a week) Permanent or indefinite contract
## 773 Full-time Permanent or indefinite contract
## 774 Full-time Permanent or indefinite contract
## 775 Full-time Permanent or indefinite contract
## 776 Full-time Permanent or indefinite contract
## 777 Full-time Permanent or indefinite contract
## 778 Full-time Fixed-term
## 779 Full-time Permanent or indefinite contract
## 780 Full-time Permanent or indefinite contract
## 781 Full-time Permanent or indefinite contract
## 782 Part-time Permanent or indefinite contract
## 783 Other working hours Fixed-term
## 784 <NA> <NA>
## 785 Full-time Permanent or indefinite contract
## 786 Other working hours Permanent or indefinite contract
## 787 Full-time Permanent or indefinite contract
## 788 Full-time Permanent or indefinite contract
## 789 Full-time Fixed-term
## 790 Other working hours Fixed-term
## 791 Other working hours Permanent or indefinite contract
## 792 Full-time Permanent or indefinite contract
## 793 Full-time Permanent or indefinite contract
## 794 Full-time Permanent or indefinite contract
## 795 <NA> <NA>
## 796 Part-time Fixed-term
## 797 Full-time Permanent or indefinite contract
## 798 Other working hours Fixed-term
## 799 Part-time Permanent or indefinite contract
## 800 Part-time Permanent or indefinite contract
## 801 Other working hours Fixed-term
## 802 Full-time Permanent or indefinite contract
## 803 Full-time Fixed-term
## 804 Other working hours Permanent or indefinite contract
## 805 Other working hours Fixed-term
## 806 Other working hours Fixed-term
## 807 Part-time Fixed-term
## 808 Part-time Permanent or indefinite contract
## 809 Other working hours Fixed-term
## 810 <NA> <NA>
## 811 Part-time Fixed-term
## 812 Full-time Permanent or indefinite contract
## 813 Full-time Permanent or indefinite contract
## 814 Full-time Permanent or indefinite contract
## 815 Full-time Permanent or indefinite contract
## 816 Full-time Fixed-term
## 817 Full-time Permanent or indefinite contract
## 818 Other working hours Permanent or indefinite contract
## 819 Full-time Permanent or indefinite contract
## 820 Full-time Permanent or indefinite contract
## 821 Other working hours Permanent or indefinite contract
## 822 Other working hours Permanent or indefinite contract
## 823 Other working hours Permanent or indefinite contract
## 824 Full-time Permanent or indefinite contract
## 825 Full-time Permanent or indefinite contract
## 826 Full-time Permanent or indefinite contract
## 827 Other working hours Permanent or indefinite contract
## 828 Full-time Permanent or indefinite contract
## 829 Other working hours Permanent or indefinite contract
## 830 Full-time Permanent or indefinite contract
## 831 Other working hours Permanent or indefinite contract
## 832 Other working hours Fixed-term
## 833 Full-time Permanent or indefinite contract
## 834 Full-time Permanent or indefinite contract
## 835 Part-time Permanent or indefinite contract
## 836 Full-time Permanent or indefinite contract
## 837 Full-time Fixed-term
## 838 Other working hours Permanent or indefinite contract
## 839 Part-time Permanent or indefinite contract
## 840 Full-time Permanent or indefinite contract
## 841 Part-time Permanent or indefinite contract
## 842 Full-time Permanent or indefinite contract
## 843 Full-time Permanent or indefinite contract
## 844 Full-time Permanent or indefinite contract
## 845 Full-time Permanent or indefinite contract
## 846 <NA> <NA>
## 847 Full-time Permanent or indefinite contract
## 848 Full-time Permanent or indefinite contract
## 849 Other working hours Permanent or indefinite contract
## 850 Full-time Permanent or indefinite contract
## 851 Full-time Fixed-term
## 852 Full-time Permanent or indefinite contract
## 853 Full-time Permanent or indefinite contract
## 854 Full-time Permanent or indefinite contract
## 855 <NA> <NA>
## 856 <NA> <NA>
## 857 Other working hours Fixed-term
## 858 Full-time Permanent or indefinite contract
## 859 <NA> <NA>
## 860 Full-time Permanent or indefinite contract
## 861 Other working hours Permanent or indefinite contract
## 862 Full-time Permanent or indefinite contract
## 863 Other working hours Permanent or indefinite contract
## 864 Full-time Permanent or indefinite contract
## 865 Full-time Permanent or indefinite contract
## 866 Full-time Permanent or indefinite contract
## 867 Other working hours Permanent or indefinite contract
## 868 <NA> <NA>
## 869 Full-time Permanent or indefinite contract
## 870 Full-time Permanent or indefinite contract
## 871 Full-time Permanent or indefinite contract
## 872 Other working hours Permanent or indefinite contract
## 873 Full-time Permanent or indefinite contract
## 874 Other working hours Fixed-term
## 875 Other working hours Permanent or indefinite contract
## 876 Full-time Permanent or indefinite contract
## 877 Full-time Permanent or indefinite contract
## 878 Other working hours Permanent or indefinite contract
## 879 Part-time Permanent or indefinite contract
## 880 Full-time Permanent or indefinite contract
## 881 Other working hours Fixed-term
## 882 Other working hours Permanent or indefinite contract
## 883 Other working hours Permanent or indefinite contract
## 884 Other working hours Fixed-term
## 885 Full-time Permanent or indefinite contract
## 886 Other working hours Permanent or indefinite contract
## 887 Other working hours Permanent or indefinite contract
## 888 Full-time Permanent or indefinite contract
## 889 Full-time Permanent or indefinite contract
## 890 Other working hours Fixed-term
## 891 Full-time Fixed-term
## 892 <NA> <NA>
## 893 Part-time Permanent or indefinite contract
## 894 Full-time Permanent or indefinite contract
## 895 Full-time Permanent or indefinite contract
## 896 Full-time Fixed-term
## 897 <NA> <NA>
## 898 Full-time Permanent or indefinite contract
## 899 Other working hours Fixed-term
## 900 Other working hours Permanent or indefinite contract
## 901 Full-time Permanent or indefinite contract
## 902 <NA> <NA>
## 903 Full-time Permanent or indefinite contract
## 904 Full-time Permanent or indefinite contract
## 905 Full-time Permanent or indefinite contract
## 906 Other working hours Permanent or indefinite contract
## 907 Full-time Permanent or indefinite contract
## 908 Other working hours Fixed-term
## 909 <NA> <NA>
## 910 Other working hours Fixed-term
## 911 Full-time Permanent or indefinite contract
## 912 Full-time Permanent or indefinite contract
## 913 Other working hours Fixed-term
## 914 Full-time Permanent or indefinite contract
## 915 Full-time Permanent or indefinite contract
## 916 Full-time Permanent or indefinite contract
## 917 Full-time Permanent or indefinite contract
## 918 Other working hours Permanent or indefinite contract
## 919 Full-time Permanent or indefinite contract
## 920 Other working hours Permanent or indefinite contract
## 921 Other working hours Permanent or indefinite contract
## 922 Full-time Permanent or indefinite contract
## 923 <NA> <NA>
## 924 Other working hours Permanent or indefinite contract
## 925 Full-time Permanent or indefinite contract
## 926 Full-time Permanent or indefinite contract
## 927 Full-time Permanent or indefinite contract
## 928 Full-time Permanent or indefinite contract
## 929 Full-time Permanent or indefinite contract
## 930 Other working hours Permanent or indefinite contract
## 931 Full-time Permanent or indefinite contract
## 932 Part-time Permanent or indefinite contract
## 933 Other working hours Permanent or indefinite contract
## 934 Other working hours Fixed-term
## 935 Other working hours Permanent or indefinite contract
## 936 Full-time Permanent or indefinite contract
## 937 <NA> <NA>
## 938 Full-time Permanent or indefinite contract
## 939 Full-time Permanent or indefinite contract
## 940 Full-time Permanent or indefinite contract
## 941 Other working hours Fixed-term
## 942 Other working hours Permanent or indefinite contract
## 943 Other working hours Fixed-term
## 944 Full-time Permanent or indefinite contract
## 945 Other working hours Fixed-term
## 946 Full-time Permanent or indefinite contract
## 947 Full-time Permanent or indefinite contract
## 948 Other working hours Permanent or indefinite contract
## 949 Full-time Permanent or indefinite contract
## 950 <NA> <NA>
## 951 Full-time Fixed-term
## 952 Full-time Permanent or indefinite contract
## 953 Full-time Permanent or indefinite contract
## 954 Full-time Permanent or indefinite contract
## 955 Other working hours Permanent or indefinite contract
## 956 Full-time Permanent or indefinite contract
## 957 <NA> <NA>
## 958 Other working hours Permanent or indefinite contract
## 959 Other working hours Fixed-term
## 960 Full-time Permanent or indefinite contract
## 961 Other working hours Permanent or indefinite contract
## 962 Other working hours Fixed-term
## 963 Full-time Permanent or indefinite contract
## 964 Other working hours Fixed-term
## 965 Full-time Permanent or indefinite contract
## 966 Other working hours Fixed-term
## 967 Full-time Permanent or indefinite contract
## 968 Full-time Permanent or indefinite contract
## 969 Full-time Permanent or indefinite contract
## 970 Other working hours Permanent or indefinite contract
## 971 Full-time Permanent or indefinite contract
## 972 Full-time Permanent or indefinite contract
## 973 Other working hours Permanent or indefinite contract
## 974 Full-time Permanent or indefinite contract
## 975 Part-time Fixed-term
## 976 Full-time Permanent or indefinite contract
## 977 <NA> <NA>
## 978 Full-time Permanent or indefinite contract
## 979 Other working hours Permanent or indefinite contract
## 980 Full-time Permanent or indefinite contract
## 981 Part-time Fixed-term
## 982 Full-time Fixed-term
## 983 Full-time Permanent or indefinite contract
## 984 Other working hours Permanent or indefinite contract
## 985 Other working hours Permanent or indefinite contract
## 986 Other working hours Permanent or indefinite contract
## 987 Part-time Permanent or indefinite contract
## 988 Other working hours Permanent or indefinite contract
## 989 Other working hours Fixed-term
## 990 Full-time Fixed-term
## 991 Other working hours Permanent or indefinite contract
## 992 Other working hours Permanent or indefinite contract
## 993 Other working hours Permanent or indefinite contract
## 994 Full-time Permanent or indefinite contract
## 995 Other working hours Permanent or indefinite contract
## 996 <NA> <NA>
## 997 Other working hours Fixed-term
## 998 Other working hours Permanent or indefinite contract
## 999 Other working hours Permanent or indefinite contract
## 1000 <NA> <NA>
## 1001 Part-time Fixed-term
## 1002 Other working hours Permanent or indefinite contract
## 1003 Other working hours Fixed-term
## 1004 Full-time Fixed-term
## 1005 Full-time Fixed-term
## 1006 Full-time Permanent or indefinite contract
## 1007 Other working hours Fixed-term
## 1008 Full-time Permanent or indefinite contract
## 1009 Other working hours Permanent or indefinite contract
## 1010 Other working hours Fixed-term
## 1011 Full-time Permanent or indefinite contract
## 1012 Other working hours Fixed-term
## 1013 <NA> <NA>
## 1014 Other working hours Fixed-term
## 1015 <NA> <NA>
## 1016 Other working hours Permanent or indefinite contract
## 1017 Other working hours Fixed-term
## 1018 Full-time Permanent or indefinite contract
## 1019 Other working hours Permanent or indefinite contract
## 1020 Other working hours Permanent or indefinite contract
## 1021 Full-time Fixed-term
## 1022 Part-time Fixed-term
## 1023 Full-time Permanent or indefinite contract
## 1024 Full-time Permanent or indefinite contract
## 1025 Full-time Permanent or indefinite contract
## 1026 Full-time Permanent or indefinite contract
## 1027 Other working hours Fixed-term
## 1028 Part-time Permanent or indefinite contract
## 1029 Full-time Permanent or indefinite contract
## 1030 Full-time Permanent or indefinite contract
## 1031 Other working hours Fixed-term
## 1032 <NA> <NA>
## 1033 Full-time Fixed-term
## 1034 <NA> <NA>
## 1035 Full-time Permanent or indefinite contract
## 1036 Full-time Permanent or indefinite contract
## 1037 Full-time Permanent or indefinite contract
## 1038 Full-time Permanent or indefinite contract
## 1039 Other working hours Permanent or indefinite contract
## 1040 Full-time Permanent or indefinite contract
## 1041 Full-time Permanent or indefinite contract
## 1042 Full-time Permanent or indefinite contract
## 1043 Other working hours Fixed-term
## 1044 Part-time Fixed-term
## 1045 Full-time Permanent or indefinite contract
## 1046 Other working hours Fixed-term
## 1047 Full-time Fixed-term
## 1048 Full-time Permanent or indefinite contract
## 1049 Other working hours Permanent or indefinite contract
## 1050 Full-time Permanent or indefinite contract
## 1051 Other working hours Fixed-term
## 1052 Full-time Permanent or indefinite contract
## 1053 Full-time Permanent or indefinite contract
## 1054 Other working hours Permanent or indefinite contract
## 1055 Full-time Fixed-term
## 1056 Full-time Permanent or indefinite contract
## 1057 Other working hours Permanent or indefinite contract
## 1058 Other working hours Permanent or indefinite contract
## 1059 Full-time Permanent or indefinite contract
## 1060 Full-time Permanent or indefinite contract
## 1061 Full-time Permanent or indefinite contract
## 1062 Full-time Permanent or indefinite contract
## 1063 Full-time Permanent or indefinite contract
## 1064 Other working hours Fixed-term
## 1065 Other working hours Fixed-term
## 1066 Part-time Fixed-term
## 1067 Full-time Permanent or indefinite contract
## 1068 <NA> <NA>
## 1069 Full-time Permanent or indefinite contract
## 1070 Other working hours Permanent or indefinite contract
## 1071 Other working hours Fixed-term
## 1072 Part-time Fixed-term
## 1073 Part-time Permanent or indefinite contract
## 1074 Full-time Permanent or indefinite contract
## 1075 Part-time Fixed-term
## 1076 Other working hours Permanent or indefinite contract
## 1077 Other working hours Fixed-term
## 1078 Full-time Permanent or indefinite contract
## 1079 Full-time Permanent or indefinite contract
## 1080 Full-time Permanent or indefinite contract
## 1081 Full-time Permanent or indefinite contract
## 1082 Full-time Permanent or indefinite contract
## 1083 Full-time Permanent or indefinite contract
## 1084 Full-time Permanent or indefinite contract
## 1085 Full-time Permanent or indefinite contract
## 1086 Other working hours Permanent or indefinite contract
## 1087 Full-time Permanent or indefinite contract
## 1088 Part-time Permanent or indefinite contract
## 1089 Other working hours Permanent or indefinite contract
## 1090 Full-time Permanent or indefinite contract
## 1091 Other working hours Permanent or indefinite contract
## 1092 Other working hours Permanent or indefinite contract
## 1093 <NA> <NA>
## 1094 Part-time Permanent or indefinite contract
## 1095 Part-time Permanent or indefinite contract
## 1096 Full-time Permanent or indefinite contract
## 1097 <NA> <NA>
## 1098 Other working hours Fixed-term
## 1099 Other working hours Permanent or indefinite contract
## 1100 <NA> <NA>
## 1101 Full-time Permanent or indefinite contract
## 1102 Other working hours Fixed-term
## 1103 Part-time Fixed-term
## 1104 Full-time Permanent or indefinite contract
## 1105 Part-time Permanent or indefinite contract
## 1106 Part-time Fixed-term
## 1107 <NA> <NA>
## 1108 Other working hours Fixed-term
## 1109 Full-time Permanent or indefinite contract
## 1110 Full-time Permanent or indefinite contract
## 1111 Full-time Permanent or indefinite contract
## 1112 Full-time Permanent or indefinite contract
## 1113 Other working hours Fixed-term
## 1114 Other working hours Fixed-term
## 1115 <NA> <NA>
## 1116 <NA> <NA>
## 1117 Full-time Permanent or indefinite contract
## 1118 Full-time Permanent or indefinite contract
## 1119 <NA> <NA>
## 1120 Full-time Fixed-term
## 1121 Part-time Fixed-term
## 1122 Full-time Permanent or indefinite contract
## 1123 Full-time Permanent or indefinite contract
## 1124 Other working hours Permanent or indefinite contract
## 1125 Other working hours Permanent or indefinite contract
## 1126 Other working hours Permanent or indefinite contract
## 1127 Full-time Permanent or indefinite contract
## 1128 Other working hours Permanent or indefinite contract
## 1129 Full-time Permanent or indefinite contract
## 1130 Full-time Permanent or indefinite contract
## 1131 Full-time Fixed-term
## 1132 Full-time Permanent or indefinite contract
## 1133 Other working hours Fixed-term
## 1134 Part-time Fixed-term
## 1135 Other working hours Permanent or indefinite contract
## 1136 Full-time Permanent or indefinite contract
## 1137 Full-time Permanent or indefinite contract
## 1138 Part-time Fixed-term
## 1139 Part-time Fixed-term
## 1140 Full-time Permanent or indefinite contract
## 1141 Full-time Fixed-term
## 1142 Full-time Permanent or indefinite contract
## 1143 Other working hours Permanent or indefinite contract
## 1144 <NA> <NA>
## 1145 Full-time Permanent or indefinite contract
## 1146 Full-time Permanent or indefinite contract
## 1147 Half-time (around 20 hours a week) Fixed-term
## 1148 Other working hours Permanent or indefinite contract
## 1149 Full-time Permanent or indefinite contract
## 1150 <NA> <NA>
## 1151 Full-time Permanent or indefinite contract
## 1152 <NA> <NA>
## 1153 Part-time Fixed-term
## 1154 Part-time Permanent or indefinite contract
## 1155 Part-time Permanent or indefinite contract
## 1156 Other working hours Fixed-term
## 1157 Full-time Permanent or indefinite contract
## 1158 Full-time Permanent or indefinite contract
## 1159 Full-time Permanent or indefinite contract
## 1160 Full-time Fixed-term
## 1161 Full-time Permanent or indefinite contract
## 1162 Part-time Permanent or indefinite contract
## 1163 Full-time Permanent or indefinite contract
## 1164 <NA> <NA>
## 1165 <NA> <NA>
## 1166 <NA> <NA>
## 1167 Other working hours Permanent or indefinite contract
## 1168 Full-time Fixed-term
## 1169 Full-time Permanent or indefinite contract
## 1170 Full-time Permanent or indefinite contract
## 1171 Full-time Permanent or indefinite contract
## 1172 Full-time Fixed-term
## 1173 Full-time Permanent or indefinite contract
## 1174 Full-time Permanent or indefinite contract
## 1175 <NA> <NA>
## 1176 <NA> <NA>
## 1177 Full-time Permanent or indefinite contract
## 1178 Other working hours Permanent or indefinite contract
## 1179 Other working hours Fixed-term
## 1180 <NA> <NA>
## 1181 Other working hours Permanent or indefinite contract
## 1182 Full-time Permanent or indefinite contract
## 1183 Part-time Permanent or indefinite contract
## 1184 Other working hours Fixed-term
## 1185 Full-time Permanent or indefinite contract
## 1186 Full-time Permanent or indefinite contract
## 1187 Full-time Permanent or indefinite contract
## 1188 Full-time Fixed-term
## 1189 Full-time Permanent or indefinite contract
## 1190 Full-time Permanent or indefinite contract
## 1191 Other working hours Fixed-term
## 1192 Other working hours Fixed-term
## 1193 Full-time Permanent or indefinite contract
## 1194 Full-time Fixed-term
## 1195 Full-time Permanent or indefinite contract
## 1196 Other working hours Permanent or indefinite contract
## 1197 Full-time Permanent or indefinite contract
## 1198 Full-time Permanent or indefinite contract
## 1199 Other working hours Permanent or indefinite contract
## 1200 Full-time Permanent or indefinite contract
## 1201 Other working hours Fixed-term
## 1202 Full-time Permanent or indefinite contract
## 1203 Full-time Permanent or indefinite contract
## 1204 Full-time Permanent or indefinite contract
## 1205 Full-time Permanent or indefinite contract
## 1206 Full-time Permanent or indefinite contract
## 1207 Other working hours Permanent or indefinite contract
## 1208 Full-time Permanent or indefinite contract
## 1209 Full-time Fixed-term
## 1210 Part-time Fixed-term
## 1211 Other working hours Permanent or indefinite contract
## 1212 Part-time Fixed-term
## 1213 Full-time Permanent or indefinite contract
## 1214 Full-time Permanent or indefinite contract
## 1215 Full-time Permanent or indefinite contract
## 1216 Full-time Fixed-term
## 1217 Other working hours Fixed-term
## 1218 Full-time Permanent or indefinite contract
## 1219 <NA> <NA>
## 1220 Full-time Permanent or indefinite contract
## 1221 <NA> <NA>
## 1222 Full-time Permanent or indefinite contract
## 1223 <NA> <NA>
## 1224 Full-time Fixed-term
## 1225 Full-time Fixed-term
## 1226 Full-time Permanent or indefinite contract
## 1227 <NA> <NA>
## 1228 Full-time Permanent or indefinite contract
## 1229 Full-time Permanent or indefinite contract
## 1230 Full-time Permanent or indefinite contract
## 1231 Other working hours Fixed-term
## 1232 Other working hours Fixed-term
## 1233 Full-time Permanent or indefinite contract
## 1234 Full-time Permanent or indefinite contract
## 1235 Full-time Fixed-term
## 1236 Part-time Permanent or indefinite contract
## 1237 Other working hours Fixed-term
## 1238 Part-time Permanent or indefinite contract
## 1239 Full-time Permanent or indefinite contract
## 1240 <NA> <NA>
## 1241 Other working hours Permanent or indefinite contract
## 1242 Part-time Permanent or indefinite contract
## 1243 Other working hours Permanent or indefinite contract
## 1244 Full-time Permanent or indefinite contract
## 1245 <NA> <NA>
## 1246 Full-time Permanent or indefinite contract
## 1247 <NA> <NA>
## 1248 Full-time Permanent or indefinite contract
## 1249 <NA> <NA>
## 1250 Other working hours Fixed-term
## 1251 Part-time Fixed-term
## 1252 Full-time Permanent or indefinite contract
## 1253 Full-time Permanent or indefinite contract
## 1254 <NA> <NA>
## 1255 <NA> <NA>
## 1256 Part-time Fixed-term
## 1257 Other working hours Fixed-term
## 1258 Full-time Fixed-term
## 1259 Other working hours Permanent or indefinite contract
## 1260 Full-time Permanent or indefinite contract
## 1261 <NA> <NA>
## 1262 Other working hours Fixed-term
## 1263 <NA> <NA>
## 1264 Full-time Permanent or indefinite contract
## 1265 Full-time Permanent or indefinite contract
## 1266 Other working hours Fixed-term
## 1267 Full-time Permanent or indefinite contract
## 1268 Full-time Permanent or indefinite contract
## 1269 <NA> <NA>
## 1270 <NA> <NA>
## 1271 Full-time Permanent or indefinite contract
## 1272 Part-time Fixed-term
## 1273 Other working hours Fixed-term
## 1274 <NA> <NA>
## 1275 <NA> <NA>
## 1276 Full-time Permanent or indefinite contract
## 1277 Full-time Permanent or indefinite contract
## 1278 <NA> <NA>
## 1279 Part-time Permanent or indefinite contract
## 1280 Part-time Permanent or indefinite contract
## 1281 Other working hours Permanent or indefinite contract
## 1282 Full-time Permanent or indefinite contract
## 1283 Other working hours Fixed-term
## 1284 Full-time Permanent or indefinite contract
## 1285 Other working hours Permanent or indefinite contract
## 1286 Full-time Permanent or indefinite contract
## 1287 Full-time Permanent or indefinite contract
## 1288 Other working hours Permanent or indefinite contract
## 1289 Full-time Permanent or indefinite contract
## 1290 Full-time Permanent or indefinite contract
## 1291 Full-time Permanent or indefinite contract
## 1292 Full-time Permanent or indefinite contract
## 1293 Full-time Permanent or indefinite contract
## 1294 Full-time Permanent or indefinite contract
## 1295 Part-time Fixed-term
## 1296 Other working hours Permanent or indefinite contract
## 1297 Other working hours Permanent or indefinite contract
## 1298 Full-time Permanent or indefinite contract
## 1299 Full-time Permanent or indefinite contract
## 1300 Other working hours Permanent or indefinite contract
## 1301 Other working hours Permanent or indefinite contract
## 1302 Other working hours Permanent or indefinite contract
## 1303 Full-time Permanent or indefinite contract
## 1304 Other working hours Permanent or indefinite contract
## 1305 Full-time Permanent or indefinite contract
## 1306 Full-time Permanent or indefinite contract
## 1307 Full-time Permanent or indefinite contract
## 1308 Full-time Permanent or indefinite contract
## 1309 Other working hours Permanent or indefinite contract
## 1310 Other working hours Permanent or indefinite contract
## 1311 Full-time Permanent or indefinite contract
## 1312 Full-time Permanent or indefinite contract
## 1313 Part-time Permanent or indefinite contract
## 1314 Full-time Permanent or indefinite contract
## 1315 Other working hours Permanent or indefinite contract
## 1316 Full-time Permanent or indefinite contract
## 1317 Full-time Permanent or indefinite contract
## 1318 Part-time Fixed-term
## 1319 Full-time Permanent or indefinite contract
## 1320 Full-time Permanent or indefinite contract
## 1321 Full-time Permanent or indefinite contract
## 1322 Full-time Permanent or indefinite contract
## 1323 Full-time Permanent or indefinite contract
## 1324 <NA> <NA>
## 1325 <NA> <NA>
## 1326 Full-time Permanent or indefinite contract
## 1327 Full-time Permanent or indefinite contract
## 1328 Part-time Permanent or indefinite contract
## 1329 Other working hours Permanent or indefinite contract
## 1330 Full-time Permanent or indefinite contract
## 1331 Other working hours Fixed-term
## 1332 Full-time Permanent or indefinite contract
## 1333 Full-time Permanent or indefinite contract
## 1334 Full-time Permanent or indefinite contract
## 1335 Full-time Permanent or indefinite contract
## 1336 Half-time (around 20 hours a week) Fixed-term
## 1337 Part-time Permanent or indefinite contract
## 1338 Other working hours Permanent or indefinite contract
## 1339 <NA> <NA>
## 1340 Other working hours Fixed-term
## 1341 <NA> <NA>
## 1342 Other working hours Permanent or indefinite contract
## 1343 Full-time Fixed-term
## 1344 Part-time Permanent or indefinite contract
## 1345 Full-time Fixed-term
## 1346 Full-time Fixed-term
## 1347 Full-time Permanent or indefinite contract
## 1348 Full-time Permanent or indefinite contract
## 1349 Part-time Permanent or indefinite contract
## 1350 Full-time Permanent or indefinite contract
## 1351 Full-time Permanent or indefinite contract
## 1352 Full-time Permanent or indefinite contract
## 1353 Other working hours Permanent or indefinite contract
## 1354 Full-time Permanent or indefinite contract
## 1355 Other working hours Fixed-term
## 1356 Full-time Permanent or indefinite contract
## 1357 Full-time Permanent or indefinite contract
## 1358 Full-time Permanent or indefinite contract
## 1359 Full-time Permanent or indefinite contract
## 1360 Full-time Permanent or indefinite contract
## 1361 <NA> <NA>
## 1362 Full-time Permanent or indefinite contract
## 1363 Full-time Permanent or indefinite contract
## 1364 <NA> <NA>
## 1365 Full-time Permanent or indefinite contract
## 1366 Other working hours Permanent or indefinite contract
## 1367 Other working hours Fixed-term
## 1368 Full-time Permanent or indefinite contract
## 1369 Other working hours Fixed-term
## 1370 Full-time Fixed-term
## 1371 Other working hours Permanent or indefinite contract
## 1372 <NA> <NA>
## 1373 Full-time Fixed-term
## 1374 Full-time Permanent or indefinite contract
## 1375 Full-time Permanent or indefinite contract
## 1376 Full-time Permanent or indefinite contract
## 1377 Full-time Permanent or indefinite contract
## 1378 Other working hours Fixed-term
## 1379 Full-time Permanent or indefinite contract
## 1380 Part-time Permanent or indefinite contract
## 1381 Full-time Permanent or indefinite contract
## 1382 <NA> <NA>
## 1383 Full-time Permanent or indefinite contract
## 1384 Full-time Permanent or indefinite contract
## 1385 Full-time Permanent or indefinite contract
## 1386 <NA> <NA>
## 1387 Other working hours Permanent or indefinite contract
## 1388 Part-time Fixed-term
## 1389 Full-time Permanent or indefinite contract
## 1390 Full-time Permanent or indefinite contract
## 1391 Full-time Permanent or indefinite contract
## 1392 <NA> <NA>
## 1393 Full-time Permanent or indefinite contract
## 1394 Other working hours Fixed-term
## 1395 Full-time Permanent or indefinite contract
## 1396 Part-time Permanent or indefinite contract
## 1397 Other working hours Fixed-term
## 1398 <NA> <NA>
## 1399 Full-time Permanent or indefinite contract
## 1400 Full-time Permanent or indefinite contract
## 1401 <NA> <NA>
## 1402 <NA> <NA>
## 1403 <NA> <NA>
## 1404 Other working hours Permanent or indefinite contract
## 1405 Full-time Permanent or indefinite contract
## 1406 Half-time (around 20 hours a week) Fixed-term
## 1407 Other working hours Fixed-term
## 1408 Other working hours Permanent or indefinite contract
## 1409 Part-time Permanent or indefinite contract
## 1410 Full-time Permanent or indefinite contract
## 1411 Full-time Permanent or indefinite contract
## 1412 Full-time Permanent or indefinite contract
## 1413 Other working hours Permanent or indefinite contract
## 1414 Other working hours Fixed-term
## 1415 Part-time Permanent or indefinite contract
## 1416 Full-time Permanent or indefinite contract
## 1417 Full-time Permanent or indefinite contract
## 1418 Full-time Permanent or indefinite contract
## 1419 Other working hours Fixed-term
## 1420 Part-time Fixed-term
## 1421 Other working hours Permanent or indefinite contract
## 1422 Full-time Permanent or indefinite contract
## 1423 Full-time Permanent or indefinite contract
## 1424 Other working hours Permanent or indefinite contract
## 1425 Full-time Fixed-term
## 1426 Part-time Fixed-term
## 1427 Full-time Permanent or indefinite contract
## 1428 Other working hours Fixed-term
## 1429 Other working hours Fixed-term
## 1430 Part-time Permanent or indefinite contract
## 1431 Full-time Permanent or indefinite contract
## 1432 Full-time Permanent or indefinite contract
## 1433 Full-time Fixed-term
## 1434 <NA> <NA>
## 1435 Full-time Permanent or indefinite contract
## 1436 Other working hours Fixed-term
## 1437 Full-time Permanent or indefinite contract
## 1438 Full-time Permanent or indefinite contract
## 1439 Full-time Permanent or indefinite contract
## 1440 Full-time Fixed-term
## 1441 Full-time Permanent or indefinite contract
## 1442 Full-time Fixed-term
## 1443 Full-time Fixed-term
## 1444 Full-time Permanent or indefinite contract
## 1445 Other working hours Fixed-term
## 1446 Full-time Permanent or indefinite contract
## 1447 <NA> <NA>
## 1448 Full-time Permanent or indefinite contract
## 1449 Other working hours Permanent or indefinite contract
## 1450 Full-time Fixed-term
## 1451 Full-time Permanent or indefinite contract
## 1452 Full-time Fixed-term
## 1453 Full-time Permanent or indefinite contract
## 1454 Part-time Permanent or indefinite contract
## 1455 Other working hours Permanent or indefinite contract
## 1456 Full-time Permanent or indefinite contract
## 1457 <NA> <NA>
## 1458 Full-time Fixed-term
## 1459 Part-time Fixed-term
## 1460 Part-time Permanent or indefinite contract
## 1461 Full-time Permanent or indefinite contract
## 1462 <NA> <NA>
## 1463 Full-time Permanent or indefinite contract
## 1464 Full-time Fixed-term
## 1465 Full-time Permanent or indefinite contract
## 1466 Full-time Fixed-term
## 1467 Full-time Permanent or indefinite contract
## 1468 Full-time Permanent or indefinite contract
## 1469 Other working hours Fixed-term
## 1470 <NA> <NA>
## 1471 Other working hours Fixed-term
## 1472 <NA> <NA>
## 1473 Other working hours Permanent or indefinite contract
## 1474 Full-time Permanent or indefinite contract
## 1475 Part-time Permanent or indefinite contract
## 1476 <NA> <NA>
## 1477 Other working hours Permanent or indefinite contract
## 1478 Full-time Permanent or indefinite contract
## 1479 Full-time Permanent or indefinite contract
## 1480 Full-time Fixed-term
## 1481 Full-time Permanent or indefinite contract
## 1482 Full-time Permanent or indefinite contract
## 1483 Full-time Permanent or indefinite contract
## 1484 <NA> <NA>
## 1485 Full-time Permanent or indefinite contract
## 1486 Full-time Permanent or indefinite contract
## 1487 Full-time Permanent or indefinite contract
## 1488 Full-time Permanent or indefinite contract
## 1489 Other working hours Fixed-term
## 1490 Part-time Fixed-term
## 1491 Full-time Fixed-term
## 1492 <NA> <NA>
## 1493 Full-time Permanent or indefinite contract
## 1494 <NA> <NA>
## 1495 Other working hours Fixed-term
## 1496 Full-time Fixed-term
## 1497 Other working hours Fixed-term
## 1498 Full-time Permanent or indefinite contract
## 1499 Other working hours Permanent or indefinite contract
## 1500 Full-time Permanent or indefinite contract
## 1501 <NA> <NA>
## 1502 Other working hours Fixed-term
## 1503 Full-time Permanent or indefinite contract
## 1504 Other working hours Permanent or indefinite contract
## 1505 Other working hours Fixed-term
## 1506 Other working hours Permanent or indefinite contract
## 1507 Full-time Permanent or indefinite contract
## 1508 Full-time Permanent or indefinite contract
## 1509 <NA> <NA>
## 1510 Full-time Permanent or indefinite contract
## 1511 Full-time Permanent or indefinite contract
## 1512 Full-time Permanent or indefinite contract
## 1513 Other working hours Fixed-term
## 1514 Other working hours Fixed-term
## 1515 Full-time Permanent or indefinite contract
## 1516 Other working hours Fixed-term
## 1517 Full-time Fixed-term
## 1518 Full-time Permanent or indefinite contract
## 1519 <NA> <NA>
## 1520 Full-time Permanent or indefinite contract
## 1521 Part-time Fixed-term
## 1522 Full-time Permanent or indefinite contract
## 1523 Part-time Fixed-term
## 1524 Full-time Permanent or indefinite contract
## 1525 Part-time Fixed-term
## 1526 Other working hours Fixed-term
## 1527 Part-time Fixed-term
## 1528 Full-time Fixed-term
## 1529 Other working hours Fixed-term
## 1530 Other working hours Fixed-term
## 1531 Part-time Fixed-term
## 1532 Other working hours Fixed-term
## 1533 Full-time Permanent or indefinite contract
## 1534 Full-time Fixed-term
## 1535 Full-time Permanent or indefinite contract
## 1536 Other working hours Fixed-term
## 1537 Full-time Permanent or indefinite contract
## 1538 Other working hours Permanent or indefinite contract
## 1539 Full-time Permanent or indefinite contract
## 1540 Full-time Permanent or indefinite contract
## 1541 <NA> <NA>
## 1542 Full-time Permanent or indefinite contract
## 1543 Full-time Permanent or indefinite contract
## 1544 Full-time Permanent or indefinite contract
## 1545 Full-time Permanent or indefinite contract
## 1546 Full-time Permanent or indefinite contract
## 1547 Full-time Permanent or indefinite contract
## 1548 Full-time Permanent or indefinite contract
## 1549 Half-time (around 20 hours a week) Fixed-term
## 1550 Full-time Permanent or indefinite contract
## 1551 Part-time Permanent or indefinite contract
## 1552 Full-time Permanent or indefinite contract
## 1553 Full-time Permanent or indefinite contract
## 1554 <NA> <NA>
## 1555 Full-time Permanent or indefinite contract
## 1556 Other working hours Fixed-term
## 1557 Full-time Permanent or indefinite contract
## 1558 Full-time Permanent or indefinite contract
## 1559 Full-time Permanent or indefinite contract
## 1560 <NA> <NA>
## 1561 Full-time Permanent or indefinite contract
## 1562 Full-time Permanent or indefinite contract
## 1563 Part-time Permanent or indefinite contract
## 1564 <NA> <NA>
## 1565 Part-time Fixed-term
## 1566 Full-time Fixed-term
## 1567 Part-time Fixed-term
## 1568 Full-time Permanent or indefinite contract
## 1569 <NA> <NA>
## 1570 Other working hours Fixed-term
## 1571 Part-time Permanent or indefinite contract
## 1572 Full-time Permanent or indefinite contract
## 1573 Other working hours Fixed-term
## 1574 Full-time Permanent or indefinite contract
## 1575 Full-time Permanent or indefinite contract
## 1576 Part-time Fixed-term
## 1577 Full-time Fixed-term
## 1578 <NA> <NA>
## 1579 <NA> <NA>
## 1580 <NA> <NA>
## 1581 Other working hours Fixed-term
## 1582 Other working hours Permanent or indefinite contract
## 1583 <NA> <NA>
## 1584 Full-time Fixed-term
## 1585 Part-time Permanent or indefinite contract
## 1586 Other working hours Permanent or indefinite contract
## 1587 Full-time Fixed-term
## 1588 Part-time Permanent or indefinite contract
## 1589 Full-time Permanent or indefinite contract
## 1590 <NA> <NA>
## 1591 Full-time Fixed-term
## 1592 Full-time Permanent or indefinite contract
## 1593 Other working hours Fixed-term
## 1594 <NA> <NA>
## 1595 Part-time Permanent or indefinite contract
## 1596 Full-time Permanent or indefinite contract
## 1597 Full-time Permanent or indefinite contract
## 1598 Part-time Permanent or indefinite contract
## 1599 Full-time Permanent or indefinite contract
## 1600 Full-time Permanent or indefinite contract
## 1601 Other working hours Fixed-term
## 1602 Other working hours Fixed-term
## 1603 Part-time Fixed-term
## 1604 Full-time Fixed-term
## 1605 Other working hours Permanent or indefinite contract
## 1606 Full-time Permanent or indefinite contract
## 1607 Full-time Fixed-term
## 1608 <NA> <NA>
## 1609 Half-time (around 20 hours a week) Fixed-term
## 1610 Part-time Fixed-term
## 1611 Half-time (around 20 hours a week) Fixed-term
## 1612 Full-time Permanent or indefinite contract
## 1613 Full-time Permanent or indefinite contract
## 1614 Full-time Permanent or indefinite contract
## 1615 Full-time Permanent or indefinite contract
## 1616 Part-time Fixed-term
## 1617 Other working hours Fixed-term
## 1618 <NA> <NA>
## 1619 Part-time Permanent or indefinite contract
## 1620 Part-time Permanent or indefinite contract
## 1621 Part-time Permanent or indefinite contract
## 1622 Other working hours Fixed-term
## 1623 Part-time Fixed-term
## 1624 <NA> <NA>
## 1625 <NA> <NA>
## 1626 Full-time Fixed-term
## 1627 Part-time Permanent or indefinite contract
## 1628 Other working hours Fixed-term
## 1629 Full-time Permanent or indefinite contract
## 1630 Part-time Fixed-term
## 1631 Full-time Fixed-term
## 1632 Full-time Permanent or indefinite contract
## 1633 Part-time Fixed-term
## 1634 <NA> <NA>
## 1635 Full-time Permanent or indefinite contract
## 1636 Full-time Fixed-term
## 1637 Full-time Permanent or indefinite contract
## 1638 Full-time Fixed-term
## 1639 Part-time Permanent or indefinite contract
## 1640 Other working hours Fixed-term
## 1641 Part-time Fixed-term
## 1642 Other working hours Fixed-term
## 1643 Full-time Permanent or indefinite contract
## 1644 Full-time Permanent or indefinite contract
## 1645 Full-time Fixed-term
## 1646 Full-time Permanent or indefinite contract
## 1647 <NA> <NA>
## 1648 Full-time Fixed-term
## 1649 <NA> <NA>
## 1650 Part-time Permanent or indefinite contract
## 1651 Part-time Fixed-term
## 1652 Other working hours Permanent or indefinite contract
## 1653 Full-time Permanent or indefinite contract
## 1654 Part-time Fixed-term
## 1655 Half-time (around 20 hours a week) Fixed-term
## 1656 Full-time Fixed-term
## 1657 Part-time Permanent or indefinite contract
## 1658 <NA> <NA>
## 1659 Other working hours Fixed-term
## 1660 Half-time (around 20 hours a week) Fixed-term
## 1661 Part-time Fixed-term
## 1662 <NA> <NA>
## 1663 <NA> <NA>
## 1664 Other working hours Fixed-term
## 1665 Part-time Permanent or indefinite contract
## 1666 Part-time Permanent or indefinite contract
## 1667 Part-time Fixed-term
## 1668 Other working hours Permanent or indefinite contract
## 1669 <NA> <NA>
## 1670 Other working hours Fixed-term
## 1671 Other working hours Fixed-term
## 1672 Full-time Permanent or indefinite contract
## 1673 Full-time Fixed-term
## 1674 Other working hours Fixed-term
## 1675 <NA> <NA>
## 1676 Full-time Fixed-term
## 1677 <NA> <NA>
## 1678 Full-time Fixed-term
## 1679 Full-time Permanent or indefinite contract
## 1680 Other working hours Permanent or indefinite contract
## 1681 Other working hours Fixed-term
## 1682 Other working hours Fixed-term
## 1683 Part-time Permanent or indefinite contract
## 1684 Full-time Permanent or indefinite contract
## 1685 Other working hours Fixed-term
## 1686 <NA> <NA>
## 1687 <NA> <NA>
## 1688 <NA> <NA>
## 1689 Part-time Fixed-term
## 1690 Full-time Permanent or indefinite contract
## 1691 Full-time Permanent or indefinite contract
## 1692 Part-time Fixed-term
## 1693 Full-time Permanent or indefinite contract
## 1694 Part-time Fixed-term
## 1695 Part-time Permanent or indefinite contract
## 1696 Full-time Fixed-term
## 1697 Full-time Permanent or indefinite contract
## 1698 Full-time Permanent or indefinite contract
## 1699 Part-time Permanent or indefinite contract
## 1700 Full-time Permanent or indefinite contract
## 1701 Full-time Permanent or indefinite contract
## 1702 Other working hours Permanent or indefinite contract
## 1703 Full-time Permanent or indefinite contract
## 1704 Other working hours Fixed-term
## 1705 Part-time Permanent or indefinite contract
## 1706 Full-time Permanent or indefinite contract
## 1707 Full-time Permanent or indefinite contract
## 1708 Other working hours Fixed-term
## 1709 <NA> <NA>
## 1710 <NA> <NA>
## 1711 <NA> <NA>
## 1712 Part-time Permanent or indefinite contract
## 1713 <NA> <NA>
## 1714 Full-time Permanent or indefinite contract
## 1715 Full-time Permanent or indefinite contract
## 1716 Full-time Fixed-term
## 1717 Other working hours Permanent or indefinite contract
## 1718 Full-time Permanent or indefinite contract
## 1719 Full-time Permanent or indefinite contract
## 1720 Full-time Permanent or indefinite contract
## 1721 Full-time Permanent or indefinite contract
## 1722 Other working hours Fixed-term
## 1723 Other working hours Permanent or indefinite contract
## 1724 Other working hours Fixed-term
## 1725 Full-time Permanent or indefinite contract
## 1726 Full-time Permanent or indefinite contract
## 1727 <NA> <NA>
## 1728 Part-time Fixed-term
## 1729 Full-time Permanent or indefinite contract
## 1730 Full-time Permanent or indefinite contract
## 1731 Full-time Fixed-term
## 1732 Full-time Permanent or indefinite contract
## 1733 Full-time Permanent or indefinite contract
## 1734 Full-time Permanent or indefinite contract
## 1735 Full-time Permanent or indefinite contract
## 1736 Full-time Permanent or indefinite contract
## 1737 Full-time Permanent or indefinite contract
## 1738 Full-time Permanent or indefinite contract
## 1739 Other working hours Fixed-term
## 1740 Full-time Permanent or indefinite contract
## 1741 Part-time Fixed-term
## 1742 Full-time Fixed-term
## 1743 <NA> <NA>
## 1744 Full-time Permanent or indefinite contract
## 1745 <NA> <NA>
## 1746 Full-time Fixed-term
## 1747 Part-time Fixed-term
## 1748 Full-time Permanent or indefinite contract
## 1749 Other working hours Permanent or indefinite contract
## 1750 Part-time Fixed-term
## 1751 Part-time Fixed-term
## 1752 Full-time Permanent or indefinite contract
## 1753 Part-time Fixed-term
## 1754 Full-time Permanent or indefinite contract
## 1755 Full-time Fixed-term
## 1756 <NA> <NA>
## 1757 Other working hours Fixed-term
## 1758 Full-time Permanent or indefinite contract
## 1759 Half-time (around 20 hours a week) Permanent or indefinite contract
## 1760 Part-time Permanent or indefinite contract
## 1761 Full-time Permanent or indefinite contract
## 1762 Full-time Permanent or indefinite contract
## 1763 Full-time Permanent or indefinite contract
## 1764 Full-time Permanent or indefinite contract
## 1765 Other working hours Fixed-term
## 1766 Part-time Fixed-term
## 1767 Full-time Permanent or indefinite contract
## 1768 Other working hours Permanent or indefinite contract
## 1769 Full-time Permanent or indefinite contract
## 1770 Other working hours Permanent or indefinite contract
## 1771 Half-time (around 20 hours a week) Permanent or indefinite contract
## 1772 Other working hours Fixed-term
## 1773 Full-time Permanent or indefinite contract
## 1774 Part-time Permanent or indefinite contract
## 1775 Other working hours Fixed-term
## 1776 Other working hours Fixed-term
## 1777 Other working hours Fixed-term
## 1778 Half-time (around 20 hours a week) Permanent or indefinite contract
## 1779 Part-time Fixed-term
## 1780 Half-time (around 20 hours a week) Fixed-term
## 1781 Full-time Permanent or indefinite contract
## 1782 Other working hours Permanent or indefinite contract
## 1783 Full-time Permanent or indefinite contract
## 1784 Other working hours Permanent or indefinite contract
## 1785 Part-time Fixed-term
## 1786 Full-time Permanent or indefinite contract
## 1787 Full-time Permanent or indefinite contract
## 1788 Full-time Permanent or indefinite contract
## 1789 <NA> <NA>
## 1790 <NA> <NA>
## 1791 Part-time Fixed-term
## 1792 Other working hours Fixed-term
## 1793 Other working hours Permanent or indefinite contract
## 1794 Part-time Permanent or indefinite contract
## 1795 Full-time Permanent or indefinite contract
## 1796 Other working hours Fixed-term
## 1797 Other working hours Fixed-term
## 1798 Half-time (around 20 hours a week) Fixed-term
## 1799 Full-time Permanent or indefinite contract
## 1800 Other working hours Fixed-term
## 1801 <NA> <NA>
## 1802 Part-time Fixed-term
## 1803 Full-time Permanent or indefinite contract
## 1804 Other working hours Permanent or indefinite contract
## 1805 Part-time Fixed-term
## 1806 Part-time Fixed-term
## 1807 <NA> <NA>
## 1808 Other working hours Fixed-term
## 1809 Part-time Fixed-term
## 1810 Other working hours Permanent or indefinite contract
## 1811 Part-time Permanent or indefinite contract
## 1812 Part-time Fixed-term
## 1813 Full-time Permanent or indefinite contract
## 1814 Other working hours Permanent or indefinite contract
## 1815 Full-time Permanent or indefinite contract
## 1816 Full-time Permanent or indefinite contract
## 1817 Full-time Permanent or indefinite contract
## 1818 <NA> <NA>
## 1819 Full-time Fixed-term
## 1820 Full-time Permanent or indefinite contract
## 1821 <NA> <NA>
## 1822 Full-time Fixed-term
## 1823 Part-time Permanent or indefinite contract
## 1824 Other working hours Fixed-term
## 1825 Full-time Permanent or indefinite contract
## 1826 Other working hours Fixed-term
## 1827 Full-time Permanent or indefinite contract
## 1828 Other working hours Permanent or indefinite contract
## 1829 Other working hours Fixed-term
## 1830 Part-time Fixed-term
## 1831 Full-time Permanent or indefinite contract
## 1832 Other working hours Fixed-term
## 1833 Other working hours Fixed-term
## 1834 Other working hours Fixed-term
## 1835 Other working hours Fixed-term
## 1836 Other working hours Fixed-term
## 1837 Full-time Permanent or indefinite contract
## 1838 Full-time Permanent or indefinite contract
## 1839 Other working hours Fixed-term
## 1840 Other working hours Permanent or indefinite contract
## 1841 Part-time Permanent or indefinite contract
## 1842 Full-time Permanent or indefinite contract
## 1843 <NA> <NA>
## 1844 Full-time Permanent or indefinite contract
## 1845 Full-time Permanent or indefinite contract
## 1846 Full-time Fixed-term
## 1847 Part-time Permanent or indefinite contract
## 1848 Part-time Permanent or indefinite contract
## 1849 Full-time Permanent or indefinite contract
## 1850 Full-time Permanent or indefinite contract
## 1851 Other working hours Fixed-term
## 1852 Other working hours Fixed-term
## 1853 Part-time Permanent or indefinite contract
## 1854 Other working hours Fixed-term
## 1855 Full-time Permanent or indefinite contract
## 1856 Part-time Fixed-term
## 1857 <NA> <NA>
## 1858 Other working hours Fixed-term
## 1859 Full-time Permanent or indefinite contract
## 1860 Full-time Permanent or indefinite contract
## 1861 Other working hours Fixed-term
## 1862 Other working hours Fixed-term
## 1863 Full-time Permanent or indefinite contract
## 1864 Full-time Permanent or indefinite contract
## 1865 Part-time Permanent or indefinite contract
## 1866 Full-time Permanent or indefinite contract
## 1867 Other working hours Fixed-term
## 1868 Other working hours Fixed-term
## 1869 Full-time Permanent or indefinite contract
## 1870 <NA> <NA>
## 1871 Part-time Permanent or indefinite contract
## 1872 Full-time Permanent or indefinite contract
## 1873 Part-time Fixed-term
## 1874 Part-time Fixed-term
## 1875 Part-time Fixed-term
## 1876 Part-time Fixed-term
## 1877 Part-time Permanent or indefinite contract
## 1878 Full-time Permanent or indefinite contract
## 1879 Full-time Permanent or indefinite contract
## 1880 Full-time Permanent or indefinite contract
## 1881 Full-time Permanent or indefinite contract
## 1882 Full-time Permanent or indefinite contract
## 1883 Full-time Permanent or indefinite contract
## 1884 Part-time Permanent or indefinite contract
## 1885 Other working hours Fixed-term
## 1886 Part-time Fixed-term
## 1887 Other working hours Fixed-term
## 1888 <NA> <NA>
## 1889 Part-time Fixed-term
## 1890 <NA> <NA>
## 1891 Other working hours Permanent or indefinite contract
## 1892 Full-time Permanent or indefinite contract
## 1893 Full-time Permanent or indefinite contract
## 1894 Full-time Permanent or indefinite contract
## 1895 Full-time Permanent or indefinite contract
## 1896 Full-time Permanent or indefinite contract
## 1897 <NA> <NA>
## 1898 Full-time Fixed-term
## 1899 Full-time Permanent or indefinite contract
## 1900 Full-time Fixed-term
## 1901 Other working hours Fixed-term
## 1902 Other working hours Fixed-term
## 1903 Part-time Fixed-term
## 1904 Full-time Permanent or indefinite contract
## 1905 Full-time Fixed-term
## 1906 Part-time Fixed-term
## 1907 <NA> <NA>
## 1908 Full-time Permanent or indefinite contract
## 1909 Full-time Permanent or indefinite contract
## 1910 Part-time Fixed-term
## 1911 Full-time Permanent or indefinite contract
## 1912 Other working hours Fixed-term
## 1913 Other working hours Permanent or indefinite contract
## 1914 Other working hours Permanent or indefinite contract
## 1915 Full-time Permanent or indefinite contract
## 1916 Full-time Permanent or indefinite contract
## 1917 Full-time Permanent or indefinite contract
## 1918 Other working hours Fixed-term
## 1919 Other working hours Fixed-term
## 1920 Full-time Permanent or indefinite contract
## 1921 Other working hours Fixed-term
## 1922 <NA> <NA>
## 1923 Full-time Permanent or indefinite contract
## 1924 Full-time Permanent or indefinite contract
## 1925 Full-time Permanent or indefinite contract
## 1926 Full-time Permanent or indefinite contract
## 1927 Part-time Fixed-term
## 1928 Full-time Permanent or indefinite contract
## 1929 Part-time Fixed-term
## 1930 Half-time (around 20 hours a week) Fixed-term
## 1931 Full-time Permanent or indefinite contract
## 1932 <NA> <NA>
## 1933 Part-time Permanent or indefinite contract
## 1934 Other working hours Fixed-term
## 1935 Full-time Permanent or indefinite contract
## 1936 Other working hours Fixed-term
## 1937 Other working hours Fixed-term
## 1938 <NA> <NA>
## education_basic
## 1 Upper secondary education (matriculation examination)
## 2 Upper secondary education (matriculation examination)
## 3 Upper secondary education (matriculation examination)
## 4 Primary school or lower secondary school
## 5 Primary school or lower secondary school
## 6 Upper secondary education (matriculation examination)
## 7 Primary school or lower secondary school
## 8 Upper secondary education (matriculation examination)
## 9 Upper secondary education (matriculation examination)
## 10 Primary school or lower secondary school
## 11 Primary school or lower secondary school
## 12 Primary school or lower secondary school
## 13 Primary education (pre-1972)
## 14 Upper secondary education (matriculation examination)
## 15 Primary school or lower secondary school
## 16 Primary school or lower secondary school
## 17 Primary school or lower secondary school
## 18 Upper secondary education (matriculation examination)
## 19 Primary school or lower secondary school
## 20 Primary school or lower secondary school
## 21 Upper secondary education (matriculation examination)
## 22 Upper secondary education (matriculation examination)
## 23 Upper secondary education (matriculation examination)
## 24 Primary school or lower secondary school
## 25 Upper secondary education (matriculation examination)
## 26 Primary school or lower secondary school
## 27 Upper secondary education (matriculation examination)
## 28 Upper secondary education (matriculation examination)
## 29 Upper secondary education (matriculation examination)
## 30 Upper secondary education (matriculation examination)
## 31 Upper secondary education (matriculation examination)
## 32 Upper secondary education (matriculation examination)
## 33 Primary school or lower secondary school
## 34 Upper secondary education (matriculation examination)
## 35 Upper secondary education (matriculation examination)
## 36 Primary school or lower secondary school
## 37 Primary school or lower secondary school
## 38 Primary school or lower secondary school
## 39 Upper secondary education (matriculation examination)
## 40 Primary education (pre-1972)
## 41 Upper secondary education (matriculation examination)
## 42 Primary school or lower secondary school
## 43 Primary school or lower secondary school
## 44 Primary school or lower secondary school
## 45 Upper secondary education (matriculation examination)
## 46 Primary school or lower secondary school
## 47 Upper secondary education (matriculation examination)
## 48 Upper secondary education (matriculation examination)
## 49 Primary school or lower secondary school
## 50 Upper secondary education (matriculation examination)
## 51 Primary school or lower secondary school
## 52 Primary school or lower secondary school
## 53 Upper secondary education (matriculation examination)
## 54 Primary education (pre-1972)
## 55 Primary school or lower secondary school
## 56 Upper secondary education (matriculation examination)
## 57 Primary school or lower secondary school
## 58 Upper secondary education (matriculation examination)
## 59 Upper secondary education (matriculation examination)
## 60 Upper secondary education (matriculation examination)
## 61 Upper secondary education (matriculation examination)
## 62 Upper secondary education (matriculation examination)
## 63 Upper secondary education (matriculation examination)
## 64 Upper secondary education (matriculation examination)
## 65 Primary school or lower secondary school
## 66 Primary school or lower secondary school
## 67 Upper secondary education (matriculation examination)
## 68 Upper secondary education (matriculation examination)
## 69 Upper secondary education (matriculation examination)
## 70 Upper secondary education (matriculation examination)
## 71 Primary school or lower secondary school
## 72 Primary school or lower secondary school
## 73 Primary school or lower secondary school
## 74 Upper secondary education (matriculation examination)
## 75 Upper secondary education (matriculation examination)
## 76 Primary school or lower secondary school
## 77 Upper secondary education (matriculation examination)
## 78 Primary school or lower secondary school
## 79 Primary school or lower secondary school
## 80 Primary school or lower secondary school
## 81 Primary school or lower secondary school
## 82 Upper secondary education (matriculation examination)
## 83 Upper secondary education (matriculation examination)
## 84 Upper secondary education (matriculation examination)
## 85 Upper secondary education (matriculation examination)
## 86 Primary school or lower secondary school
## 87 Primary school or lower secondary school
## 88 Upper secondary education (matriculation examination)
## 89 Upper secondary education (matriculation examination)
## 90 Primary school or lower secondary school
## 91 Primary school or lower secondary school
## 92 Upper secondary education (matriculation examination)
## 93 Primary school or lower secondary school
## 94 Upper secondary education (matriculation examination)
## 95 Upper secondary education (matriculation examination)
## 96 Primary school or lower secondary school
## 97 Upper secondary education (matriculation examination)
## 98 Upper secondary education (matriculation examination)
## 99 Primary school or lower secondary school
## 100 Upper secondary education (matriculation examination)
## 101 Primary school or lower secondary school
## 102 Upper secondary education (matriculation examination)
## 103 Primary school or lower secondary school
## 104 Primary school or lower secondary school
## 105 Upper secondary education (matriculation examination)
## 106 Upper secondary education (matriculation examination)
## 107 Upper secondary education (matriculation examination)
## 108 Primary school or lower secondary school
## 109 Primary education (pre-1972)
## 110 Primary education (pre-1972)
## 111 Upper secondary education (matriculation examination)
## 112 Primary school or lower secondary school
## 113 Upper secondary education (matriculation examination)
## 114 Upper secondary education (matriculation examination)
## 115 Upper secondary education (matriculation examination)
## 116 Primary school or lower secondary school
## 117 Upper secondary education (matriculation examination)
## 118 Primary school or lower secondary school
## 119 Primary school or lower secondary school
## 120 Upper secondary education (matriculation examination)
## 121 Upper secondary education (matriculation examination)
## 122 Primary school or lower secondary school
## 123 Upper secondary education (matriculation examination)
## 124 Primary education (pre-1972)
## 125 Upper secondary education (matriculation examination)
## 126 Primary school or lower secondary school
## 127 Upper secondary education (matriculation examination)
## 128 Upper secondary education (matriculation examination)
## 129 Primary education (pre-1972)
## 130 Primary school or lower secondary school
## 131 Primary school or lower secondary school
## 132 Upper secondary education (matriculation examination)
## 133 Upper secondary education (matriculation examination)
## 134 Upper secondary education (matriculation examination)
## 135 Upper secondary education (matriculation examination)
## 136 Upper secondary education (matriculation examination)
## 137 Primary school or lower secondary school
## 138 Upper secondary education (matriculation examination)
## 139 Upper secondary education (matriculation examination)
## 140 Upper secondary education (matriculation examination)
## 141 Upper secondary education (matriculation examination)
## 142 Upper secondary education (matriculation examination)
## 143 Primary school or lower secondary school
## 144 Primary school or lower secondary school
## 145 Primary school or lower secondary school
## 146 Primary school or lower secondary school
## 147 Upper secondary education (matriculation examination)
## 148 Primary school or lower secondary school
## 149 Primary education (pre-1972)
## 150 Upper secondary education (matriculation examination)
## 151 Upper secondary education (matriculation examination)
## 152 Upper secondary education (matriculation examination)
## 153 Primary education (pre-1972)
## 154 Upper secondary education (matriculation examination)
## 155 Primary school or lower secondary school
## 156 Upper secondary education (matriculation examination)
## 157 Upper secondary education (matriculation examination)
## 158 Primary school or lower secondary school
## 159 Upper secondary education (matriculation examination)
## 160 Primary school or lower secondary school
## 161 Primary education (pre-1972)
## 162 Upper secondary education (matriculation examination)
## 163 Upper secondary education (matriculation examination)
## 164 Upper secondary education (matriculation examination)
## 165 Primary school or lower secondary school
## 166 Primary school or lower secondary school
## 167 Upper secondary education (matriculation examination)
## 168 Upper secondary education (matriculation examination)
## 169 Upper secondary education (matriculation examination)
## 170 Upper secondary education (matriculation examination)
## 171 Primary school or lower secondary school
## 172 Upper secondary education (matriculation examination)
## 173 Primary school or lower secondary school
## 174 Primary school or lower secondary school
## 175 Primary education (pre-1972)
## 176 Upper secondary education (matriculation examination)
## 177 Primary school or lower secondary school
## 178 Upper secondary education (matriculation examination)
## 179 Primary school or lower secondary school
## 180 Primary education (pre-1972)
## 181 Primary school or lower secondary school
## 182 Upper secondary education (matriculation examination)
## 183 Primary school or lower secondary school
## 184 Primary education (pre-1972)
## 185 Primary education (pre-1972)
## 186 Upper secondary education (matriculation examination)
## 187 Primary education (pre-1972)
## 188 Upper secondary education (matriculation examination)
## 189 Upper secondary education (matriculation examination)
## 190 Primary school or lower secondary school
## 191 Upper secondary education (matriculation examination)
## 192 Primary school or lower secondary school
## 193 Primary school or lower secondary school
## 194 Primary school or lower secondary school
## 195 Primary school or lower secondary school
## 196 Upper secondary education (matriculation examination)
## 197 Upper secondary education (matriculation examination)
## 198 Primary school or lower secondary school
## 199 Primary school or lower secondary school
## 200 Primary school or lower secondary school
## 201 Upper secondary education (matriculation examination)
## 202 Primary school or lower secondary school
## 203 Upper secondary education (matriculation examination)
## 204 Upper secondary education (matriculation examination)
## 205 Primary school or lower secondary school
## 206 Upper secondary education (matriculation examination)
## 207 Upper secondary education (matriculation examination)
## 208 Primary school or lower secondary school
## 209 Primary school or lower secondary school
## 210 Upper secondary education (matriculation examination)
## 211 Primary school or lower secondary school
## 212 Upper secondary education (matriculation examination)
## 213 Upper secondary education (matriculation examination)
## 214 Primary school or lower secondary school
## 215 Upper secondary education (matriculation examination)
## 216 Primary education (pre-1972)
## 217 Upper secondary education (matriculation examination)
## 218 Upper secondary education (matriculation examination)
## 219 Primary education (pre-1972)
## 220 Primary school or lower secondary school
## 221 Upper secondary education (matriculation examination)
## 222 Primary school or lower secondary school
## 223 Primary school or lower secondary school
## 224 Primary education (pre-1972)
## 225 Primary school or lower secondary school
## 226 Upper secondary education (matriculation examination)
## 227 Primary school or lower secondary school
## 228 Primary school or lower secondary school
## 229 Upper secondary education (matriculation examination)
## 230 Upper secondary education (matriculation examination)
## 231 Upper secondary education (matriculation examination)
## 232 Primary school or lower secondary school
## 233 Primary education (pre-1972)
## 234 Primary school or lower secondary school
## 235 Primary school or lower secondary school
## 236 Upper secondary education (matriculation examination)
## 237 Primary school or lower secondary school
## 238 Upper secondary education (matriculation examination)
## 239 Primary education (pre-1972)
## 240 Upper secondary education (matriculation examination)
## 241 Primary school or lower secondary school
## 242 Upper secondary education (matriculation examination)
## 243 Primary school or lower secondary school
## 244 Upper secondary education (matriculation examination)
## 245 Upper secondary education (matriculation examination)
## 246 Upper secondary education (matriculation examination)
## 247 Upper secondary education (matriculation examination)
## 248 Primary school or lower secondary school
## 249 Primary school or lower secondary school
## 250 Primary school or lower secondary school
## 251 Primary education (pre-1972)
## 252 Upper secondary education (matriculation examination)
## 253 Upper secondary education (matriculation examination)
## 254 Primary school or lower secondary school
## 255 Primary school or lower secondary school
## 256 Upper secondary education (matriculation examination)
## 257 Upper secondary education (matriculation examination)
## 258 Primary school or lower secondary school
## 259 Primary school or lower secondary school
## 260 Primary school or lower secondary school
## 261 Upper secondary education (matriculation examination)
## 262 Upper secondary education (matriculation examination)
## 263 Primary education (pre-1972)
## 264 Upper secondary education (matriculation examination)
## 265 Primary education (pre-1972)
## 266 Primary school or lower secondary school
## 267 Upper secondary education (matriculation examination)
## 268 Primary school or lower secondary school
## 269 Primary school or lower secondary school
## 270 Primary education (pre-1972)
## 271 Upper secondary education (matriculation examination)
## 272 Primary school or lower secondary school
## 273 Upper secondary education (matriculation examination)
## 274 Primary school or lower secondary school
## 275 Primary education (pre-1972)
## 276 Primary school or lower secondary school
## 277 Primary education (pre-1972)
## 278 Upper secondary education (matriculation examination)
## 279 Upper secondary education (matriculation examination)
## 280 Primary school or lower secondary school
## 281 Upper secondary education (matriculation examination)
## 282 Primary school or lower secondary school
## 283 Primary school or lower secondary school
## 284 Primary school or lower secondary school
## 285 Primary school or lower secondary school
## 286 Upper secondary education (matriculation examination)
## 287 Primary school or lower secondary school
## 288 Primary education (pre-1972)
## 289 Primary education (pre-1972)
## 290 Primary school or lower secondary school
## 291 Upper secondary education (matriculation examination)
## 292 Primary school or lower secondary school
## 293 Primary school or lower secondary school
## 294 Primary school or lower secondary school
## 295 Upper secondary education (matriculation examination)
## 296 Upper secondary education (matriculation examination)
## 297 Primary school or lower secondary school
## 298 Primary school or lower secondary school
## 299 Upper secondary education (matriculation examination)
## 300 Primary school or lower secondary school
## 301 Primary school or lower secondary school
## 302 Upper secondary education (matriculation examination)
## 303 Upper secondary education (matriculation examination)
## 304 Primary education (pre-1972)
## 305 Upper secondary education (matriculation examination)
## 306 Primary school or lower secondary school
## 307 Upper secondary education (matriculation examination)
## 308 Upper secondary education (matriculation examination)
## 309 Primary school or lower secondary school
## 310 Primary education (pre-1972)
## 311 Primary education (pre-1972)
## 312 Upper secondary education (matriculation examination)
## 313 Upper secondary education (matriculation examination)
## 314 Primary school or lower secondary school
## 315 Primary school or lower secondary school
## 316 Primary school or lower secondary school
## 317 Upper secondary education (matriculation examination)
## 318 Primary school or lower secondary school
## 319 Upper secondary education (matriculation examination)
## 320 Primary school or lower secondary school
## 321 Primary school or lower secondary school
## 322 Primary school or lower secondary school
## 323 Primary school or lower secondary school
## 324 Upper secondary education (matriculation examination)
## 325 Upper secondary education (matriculation examination)
## 326 Upper secondary education (matriculation examination)
## 327 Primary school or lower secondary school
## 328 Primary education (pre-1972)
## 329 Upper secondary education (matriculation examination)
## 330 Primary school or lower secondary school
## 331 Primary education (pre-1972)
## 332 Upper secondary education (matriculation examination)
## 333 Upper secondary education (matriculation examination)
## 334 Upper secondary education (matriculation examination)
## 335 Upper secondary education (matriculation examination)
## 336 Upper secondary education (matriculation examination)
## 337 Primary school or lower secondary school
## 338 Upper secondary education (matriculation examination)
## 339 Upper secondary education (matriculation examination)
## 340 Primary school or lower secondary school
## 341 Primary school or lower secondary school
## 342 Upper secondary education (matriculation examination)
## 343 Primary school or lower secondary school
## 344 Primary school or lower secondary school
## 345 Upper secondary education (matriculation examination)
## 346 Primary school or lower secondary school
## 347 Primary school or lower secondary school
## 348 Upper secondary education (matriculation examination)
## 349 Primary school or lower secondary school
## 350 Primary education (pre-1972)
## 351 Primary school or lower secondary school
## 352 Primary school or lower secondary school
## 353 Primary school or lower secondary school
## 354 Primary school or lower secondary school
## 355 Upper secondary education (matriculation examination)
## 356 Primary school or lower secondary school
## 357 Upper secondary education (matriculation examination)
## 358 Upper secondary education (matriculation examination)
## 359 Primary education (pre-1972)
## 360 Upper secondary education (matriculation examination)
## 361 Upper secondary education (matriculation examination)
## 362 Primary school or lower secondary school
## 363 Primary school or lower secondary school
## 364 Primary education (pre-1972)
## 365 Primary school or lower secondary school
## 366 Primary school or lower secondary school
## 367 Primary school or lower secondary school
## 368 Primary school or lower secondary school
## 369 Upper secondary education (matriculation examination)
## 370 Upper secondary education (matriculation examination)
## 371 Upper secondary education (matriculation examination)
## 372 Primary school or lower secondary school
## 373 Upper secondary education (matriculation examination)
## 374 Primary school or lower secondary school
## 375 Upper secondary education (matriculation examination)
## 376 Primary school or lower secondary school
## 377 Upper secondary education (matriculation examination)
## 378 Upper secondary education (matriculation examination)
## 379 Primary education (pre-1972)
## 380 Upper secondary education (matriculation examination)
## 381 Primary school or lower secondary school
## 382 Upper secondary education (matriculation examination)
## 383 Upper secondary education (matriculation examination)
## 384 Primary education (pre-1972)
## 385 Primary school or lower secondary school
## 386 Primary school or lower secondary school
## 387 Upper secondary education (matriculation examination)
## 388 Primary school or lower secondary school
## 389 Upper secondary education (matriculation examination)
## 390 Primary school or lower secondary school
## 391 Upper secondary education (matriculation examination)
## 392 Upper secondary education (matriculation examination)
## 393 Upper secondary education (matriculation examination)
## 394 Primary school or lower secondary school
## 395 Primary school or lower secondary school
## 396 Primary school or lower secondary school
## 397 Upper secondary education (matriculation examination)
## 398 Upper secondary education (matriculation examination)
## 399 Upper secondary education (matriculation examination)
## 400 Primary school or lower secondary school
## 401 Primary education (pre-1972)
## 402 Upper secondary education (matriculation examination)
## 403 Upper secondary education (matriculation examination)
## 404 Upper secondary education (matriculation examination)
## 405 Upper secondary education (matriculation examination)
## 406 Primary education (pre-1972)
## 407 Primary education (pre-1972)
## 408 Upper secondary education (matriculation examination)
## 409 Primary education (pre-1972)
## 410 Upper secondary education (matriculation examination)
## 411 Primary education (pre-1972)
## 412 Upper secondary education (matriculation examination)
## 413 Upper secondary education (matriculation examination)
## 414 Primary education (pre-1972)
## 415 Upper secondary education (matriculation examination)
## 416 Primary school or lower secondary school
## 417 Upper secondary education (matriculation examination)
## 418 Upper secondary education (matriculation examination)
## 419 Primary school or lower secondary school
## 420 Upper secondary education (matriculation examination)
## 421 Primary school or lower secondary school
## 422 Upper secondary education (matriculation examination)
## 423 Primary education (pre-1972)
## 424 Primary school or lower secondary school
## 425 Upper secondary education (matriculation examination)
## 426 Primary school or lower secondary school
## 427 Upper secondary education (matriculation examination)
## 428 Primary school or lower secondary school
## 429 Upper secondary education (matriculation examination)
## 430 Primary education (pre-1972)
## 431 Primary school or lower secondary school
## 432 Upper secondary education (matriculation examination)
## 433 Upper secondary education (matriculation examination)
## 434 Upper secondary education (matriculation examination)
## 435 Upper secondary education (matriculation examination)
## 436 Primary school or lower secondary school
## 437 Upper secondary education (matriculation examination)
## 438 Primary school or lower secondary school
## 439 Upper secondary education (matriculation examination)
## 440 Upper secondary education (matriculation examination)
## 441 Primary school or lower secondary school
## 442 Primary school or lower secondary school
## 443 Primary education (pre-1972)
## 444 Primary school or lower secondary school
## 445 Upper secondary education (matriculation examination)
## 446 Upper secondary education (matriculation examination)
## 447 Upper secondary education (matriculation examination)
## 448 Upper secondary education (matriculation examination)
## 449 Upper secondary education (matriculation examination)
## 450 Upper secondary education (matriculation examination)
## 451 Primary school or lower secondary school
## 452 Primary school or lower secondary school
## 453 Primary school or lower secondary school
## 454 Upper secondary education (matriculation examination)
## 455 Primary school or lower secondary school
## 456 Upper secondary education (matriculation examination)
## 457 Upper secondary education (matriculation examination)
## 458 Upper secondary education (matriculation examination)
## 459 Primary education (pre-1972)
## 460 Upper secondary education (matriculation examination)
## 461 Upper secondary education (matriculation examination)
## 462 Primary school or lower secondary school
## 463 Primary education (pre-1972)
## 464 Upper secondary education (matriculation examination)
## 465 Primary school or lower secondary school
## 466 Primary school or lower secondary school
## 467 Upper secondary education (matriculation examination)
## 468 Primary school or lower secondary school
## 469 Upper secondary education (matriculation examination)
## 470 Primary education (pre-1972)
## 471 Primary school or lower secondary school
## 472 Upper secondary education (matriculation examination)
## 473 Primary school or lower secondary school
## 474 Primary school or lower secondary school
## 475 Primary school or lower secondary school
## 476 Upper secondary education (matriculation examination)
## 477 Primary education (pre-1972)
## 478 Upper secondary education (matriculation examination)
## 479 Primary school or lower secondary school
## 480 Upper secondary education (matriculation examination)
## 481 Primary education (pre-1972)
## 482 Upper secondary education (matriculation examination)
## 483 Primary school or lower secondary school
## 484 Upper secondary education (matriculation examination)
## 485 Primary school or lower secondary school
## 486 Upper secondary education (matriculation examination)
## 487 Primary school or lower secondary school
## 488 Primary school or lower secondary school
## 489 Primary education (pre-1972)
## 490 Primary school or lower secondary school
## 491 Upper secondary education (matriculation examination)
## 492 Upper secondary education (matriculation examination)
## 493 Primary school or lower secondary school
## 494 Primary school or lower secondary school
## 495 Primary school or lower secondary school
## 496 Primary school or lower secondary school
## 497 Primary education (pre-1972)
## 498 Primary school or lower secondary school
## 499 Upper secondary education (matriculation examination)
## 500 Upper secondary education (matriculation examination)
## 501 Primary school or lower secondary school
## 502 Primary school or lower secondary school
## 503 Primary education (pre-1972)
## 504 Primary school or lower secondary school
## 505 Primary education (pre-1972)
## 506 Primary education (pre-1972)
## 507 Upper secondary education (matriculation examination)
## 508 Upper secondary education (matriculation examination)
## 509 Primary school or lower secondary school
## 510 Upper secondary education (matriculation examination)
## 511 Upper secondary education (matriculation examination)
## 512 Primary school or lower secondary school
## 513 Primary school or lower secondary school
## 514 Upper secondary education (matriculation examination)
## 515 Primary school or lower secondary school
## 516 Primary school or lower secondary school
## 517 Upper secondary education (matriculation examination)
## 518 Primary school or lower secondary school
## 519 Primary school or lower secondary school
## 520 Primary school or lower secondary school
## 521 Upper secondary education (matriculation examination)
## 522 Primary school or lower secondary school
## 523 Upper secondary education (matriculation examination)
## 524 Primary school or lower secondary school
## 525 Upper secondary education (matriculation examination)
## 526 Upper secondary education (matriculation examination)
## 527 Primary education (pre-1972)
## 528 Primary school or lower secondary school
## 529 Upper secondary education (matriculation examination)
## 530 Primary school or lower secondary school
## 531 Primary school or lower secondary school
## 532 Primary education (pre-1972)
## 533 Upper secondary education (matriculation examination)
## 534 Primary school or lower secondary school
## 535 Primary school or lower secondary school
## 536 Primary school or lower secondary school
## 537 Primary school or lower secondary school
## 538 Primary school or lower secondary school
## 539 Primary school or lower secondary school
## 540 Upper secondary education (matriculation examination)
## 541 Primary school or lower secondary school
## 542 Upper secondary education (matriculation examination)
## 543 Primary school or lower secondary school
## 544 Primary school or lower secondary school
## 545 Upper secondary education (matriculation examination)
## 546 Primary education (pre-1972)
## 547 Upper secondary education (matriculation examination)
## 548 Upper secondary education (matriculation examination)
## 549 Upper secondary education (matriculation examination)
## 550 Primary school or lower secondary school
## 551 Primary school or lower secondary school
## 552 Upper secondary education (matriculation examination)
## 553 Primary school or lower secondary school
## 554 Primary school or lower secondary school
## 555 Primary school or lower secondary school
## 556 Upper secondary education (matriculation examination)
## 557 Upper secondary education (matriculation examination)
## 558 Upper secondary education (matriculation examination)
## 559 Primary school or lower secondary school
## 560 Primary school or lower secondary school
## 561 Upper secondary education (matriculation examination)
## 562 Primary school or lower secondary school
## 563 Upper secondary education (matriculation examination)
## 564 Primary school or lower secondary school
## 565 Primary education (pre-1972)
## 566 Primary school or lower secondary school
## 567 Primary education (pre-1972)
## 568 Primary education (pre-1972)
## 569 Primary school or lower secondary school
## 570 Upper secondary education (matriculation examination)
## 571 Primary school or lower secondary school
## 572 Primary school or lower secondary school
## 573 Upper secondary education (matriculation examination)
## 574 Upper secondary education (matriculation examination)
## 575 Primary school or lower secondary school
## 576 Upper secondary education (matriculation examination)
## 577 Upper secondary education (matriculation examination)
## 578 Upper secondary education (matriculation examination)
## 579 Primary school or lower secondary school
## 580 Primary education (pre-1972)
## 581 Primary school or lower secondary school
## 582 Primary education (pre-1972)
## 583 Upper secondary education (matriculation examination)
## 584 Upper secondary education (matriculation examination)
## 585 Upper secondary education (matriculation examination)
## 586 Primary school or lower secondary school
## 587 Upper secondary education (matriculation examination)
## 588 Upper secondary education (matriculation examination)
## 589 Primary school or lower secondary school
## 590 Primary school or lower secondary school
## 591 Primary education (pre-1972)
## 592 Primary education (pre-1972)
## 593 Primary school or lower secondary school
## 594 Upper secondary education (matriculation examination)
## 595 Primary school or lower secondary school
## 596 Upper secondary education (matriculation examination)
## 597 Primary school or lower secondary school
## 598 Primary school or lower secondary school
## 599 Primary school or lower secondary school
## 600 Primary education (pre-1972)
## 601 Primary school or lower secondary school
## 602 Primary school or lower secondary school
## 603 Primary school or lower secondary school
## 604 Upper secondary education (matriculation examination)
## 605 Primary school or lower secondary school
## 606 Primary school or lower secondary school
## 607 Upper secondary education (matriculation examination)
## 608 Upper secondary education (matriculation examination)
## 609 Primary school or lower secondary school
## 610 Primary education (pre-1972)
## 611 Upper secondary education (matriculation examination)
## 612 Primary school or lower secondary school
## 613 Primary education (pre-1972)
## 614 Upper secondary education (matriculation examination)
## 615 Upper secondary education (matriculation examination)
## 616 Upper secondary education (matriculation examination)
## 617 Upper secondary education (matriculation examination)
## 618 Upper secondary education (matriculation examination)
## 619 Upper secondary education (matriculation examination)
## 620 Upper secondary education (matriculation examination)
## 621 Upper secondary education (matriculation examination)
## 622 Upper secondary education (matriculation examination)
## 623 Upper secondary education (matriculation examination)
## 624 Upper secondary education (matriculation examination)
## 625 Upper secondary education (matriculation examination)
## 626 Primary school or lower secondary school
## 627 Primary school or lower secondary school
## 628 Primary school or lower secondary school
## 629 Upper secondary education (matriculation examination)
## 630 Upper secondary education (matriculation examination)
## 631 Primary school or lower secondary school
## 632 Primary school or lower secondary school
## 633 Upper secondary education (matriculation examination)
## 634 Upper secondary education (matriculation examination)
## 635 Upper secondary education (matriculation examination)
## 636 Primary school or lower secondary school
## 637 Primary school or lower secondary school
## 638 Upper secondary education (matriculation examination)
## 639 Primary school or lower secondary school
## 640 Primary school or lower secondary school
## 641 Upper secondary education (matriculation examination)
## 642 Upper secondary education (matriculation examination)
## 643 Upper secondary education (matriculation examination)
## 644 Upper secondary education (matriculation examination)
## 645 Primary school or lower secondary school
## 646 Primary school or lower secondary school
## 647 Primary school or lower secondary school
## 648 Upper secondary education (matriculation examination)
## 649 Primary school or lower secondary school
## 650 Primary school or lower secondary school
## 651 Primary school or lower secondary school
## 652 Primary school or lower secondary school
## 653 Upper secondary education (matriculation examination)
## 654 Upper secondary education (matriculation examination)
## 655 Primary school or lower secondary school
## 656 Primary school or lower secondary school
## 657 Upper secondary education (matriculation examination)
## 658 Upper secondary education (matriculation examination)
## 659 Primary education (pre-1972)
## 660 Upper secondary education (matriculation examination)
## 661 Upper secondary education (matriculation examination)
## 662 Primary school or lower secondary school
## 663 Upper secondary education (matriculation examination)
## 664 Upper secondary education (matriculation examination)
## 665 Primary school or lower secondary school
## 666 Primary school or lower secondary school
## 667 Primary school or lower secondary school
## 668 Primary school or lower secondary school
## 669 Upper secondary education (matriculation examination)
## 670 Upper secondary education (matriculation examination)
## 671 Upper secondary education (matriculation examination)
## 672 Upper secondary education (matriculation examination)
## 673 Upper secondary education (matriculation examination)
## 674 Upper secondary education (matriculation examination)
## 675 Upper secondary education (matriculation examination)
## 676 Upper secondary education (matriculation examination)
## 677 Upper secondary education (matriculation examination)
## 678 Upper secondary education (matriculation examination)
## 679 Upper secondary education (matriculation examination)
## 680 Primary school or lower secondary school
## 681 Primary school or lower secondary school
## 682 Upper secondary education (matriculation examination)
## 683 Primary school or lower secondary school
## 684 Primary school or lower secondary school
## 685 Upper secondary education (matriculation examination)
## 686 Primary school or lower secondary school
## 687 Upper secondary education (matriculation examination)
## 688 Upper secondary education (matriculation examination)
## 689 Upper secondary education (matriculation examination)
## 690 Primary school or lower secondary school
## 691 Upper secondary education (matriculation examination)
## 692 Primary education (pre-1972)
## 693 Primary education (pre-1972)
## 694 Upper secondary education (matriculation examination)
## 695 Primary education (pre-1972)
## 696 Upper secondary education (matriculation examination)
## 697 Primary education (pre-1972)
## 698 Primary school or lower secondary school
## 699 Primary school or lower secondary school
## 700 Primary school or lower secondary school
## 701 Upper secondary education (matriculation examination)
## 702 Primary school or lower secondary school
## 703 Primary school or lower secondary school
## 704 Upper secondary education (matriculation examination)
## 705 Upper secondary education (matriculation examination)
## 706 Upper secondary education (matriculation examination)
## 707 Upper secondary education (matriculation examination)
## 708 Upper secondary education (matriculation examination)
## 709 Primary school or lower secondary school
## 710 Upper secondary education (matriculation examination)
## 711 Upper secondary education (matriculation examination)
## 712 Upper secondary education (matriculation examination)
## 713 Primary education (pre-1972)
## 714 Primary education (pre-1972)
## 715 Upper secondary education (matriculation examination)
## 716 Primary education (pre-1972)
## 717 Primary school or lower secondary school
## 718 Upper secondary education (matriculation examination)
## 719 Primary school or lower secondary school
## 720 Upper secondary education (matriculation examination)
## 721 Upper secondary education (matriculation examination)
## 722 Upper secondary education (matriculation examination)
## 723 Primary school or lower secondary school
## 724 Primary education (pre-1972)
## 725 Primary school or lower secondary school
## 726 Primary school or lower secondary school
## 727 Upper secondary education (matriculation examination)
## 728 Upper secondary education (matriculation examination)
## 729 Upper secondary education (matriculation examination)
## 730 Upper secondary education (matriculation examination)
## 731 Primary school or lower secondary school
## 732 Upper secondary education (matriculation examination)
## 733 Primary school or lower secondary school
## 734 Primary school or lower secondary school
## 735 Upper secondary education (matriculation examination)
## 736 Primary school or lower secondary school
## 737 Upper secondary education (matriculation examination)
## 738 Primary education (pre-1972)
## 739 Primary school or lower secondary school
## 740 Primary education (pre-1972)
## 741 Upper secondary education (matriculation examination)
## 742 Upper secondary education (matriculation examination)
## 743 Primary school or lower secondary school
## 744 Upper secondary education (matriculation examination)
## 745 Upper secondary education (matriculation examination)
## 746 Upper secondary education (matriculation examination)
## 747 Upper secondary education (matriculation examination)
## 748 Upper secondary education (matriculation examination)
## 749 Primary education (pre-1972)
## 750 Primary school or lower secondary school
## 751 Upper secondary education (matriculation examination)
## 752 Primary education (pre-1972)
## 753 Upper secondary education (matriculation examination)
## 754 Primary school or lower secondary school
## 755 Primary education (pre-1972)
## 756 Primary school or lower secondary school
## 757 Upper secondary education (matriculation examination)
## 758 Primary school or lower secondary school
## 759 Primary school or lower secondary school
## 760 Primary school or lower secondary school
## 761 Primary school or lower secondary school
## 762 Primary school or lower secondary school
## 763 Upper secondary education (matriculation examination)
## 764 Upper secondary education (matriculation examination)
## 765 Upper secondary education (matriculation examination)
## 766 Upper secondary education (matriculation examination)
## 767 Upper secondary education (matriculation examination)
## 768 Primary school or lower secondary school
## 769 Upper secondary education (matriculation examination)
## 770 Primary school or lower secondary school
## 771 Upper secondary education (matriculation examination)
## 772 Upper secondary education (matriculation examination)
## 773 Upper secondary education (matriculation examination)
## 774 Primary school or lower secondary school
## 775 Upper secondary education (matriculation examination)
## 776 Primary school or lower secondary school
## 777 Primary school or lower secondary school
## 778 Upper secondary education (matriculation examination)
## 779 Upper secondary education (matriculation examination)
## 780 Upper secondary education (matriculation examination)
## 781 Primary school or lower secondary school
## 782 Upper secondary education (matriculation examination)
## 783 Primary school or lower secondary school
## 784 Upper secondary education (matriculation examination)
## 785 Upper secondary education (matriculation examination)
## 786 Primary school or lower secondary school
## 787 Primary education (pre-1972)
## 788 Upper secondary education (matriculation examination)
## 789 Primary school or lower secondary school
## 790 Upper secondary education (matriculation examination)
## 791 Upper secondary education (matriculation examination)
## 792 Primary school or lower secondary school
## 793 Upper secondary education (matriculation examination)
## 794 Upper secondary education (matriculation examination)
## 795 Upper secondary education (matriculation examination)
## 796 Primary school or lower secondary school
## 797 Upper secondary education (matriculation examination)
## 798 Primary school or lower secondary school
## 799 Upper secondary education (matriculation examination)
## 800 Upper secondary education (matriculation examination)
## 801 Upper secondary education (matriculation examination)
## 802 Upper secondary education (matriculation examination)
## 803 Primary education (pre-1972)
## 804 Primary education (pre-1972)
## 805 Primary school or lower secondary school
## 806 Upper secondary education (matriculation examination)
## 807 Upper secondary education (matriculation examination)
## 808 Upper secondary education (matriculation examination)
## 809 Primary school or lower secondary school
## 810 Primary school or lower secondary school
## 811 Upper secondary education (matriculation examination)
## 812 Upper secondary education (matriculation examination)
## 813 Upper secondary education (matriculation examination)
## 814 Primary school or lower secondary school
## 815 Primary school or lower secondary school
## 816 Upper secondary education (matriculation examination)
## 817 Upper secondary education (matriculation examination)
## 818 Primary school or lower secondary school
## 819 Primary school or lower secondary school
## 820 Primary education (pre-1972)
## 821 Upper secondary education (matriculation examination)
## 822 Primary education (pre-1972)
## 823 Upper secondary education (matriculation examination)
## 824 Upper secondary education (matriculation examination)
## 825 Upper secondary education (matriculation examination)
## 826 Upper secondary education (matriculation examination)
## 827 Primary school or lower secondary school
## 828 Primary school or lower secondary school
## 829 Primary education (pre-1972)
## 830 Upper secondary education (matriculation examination)
## 831 Upper secondary education (matriculation examination)
## 832 Upper secondary education (matriculation examination)
## 833 Upper secondary education (matriculation examination)
## 834 Primary school or lower secondary school
## 835 Primary education (pre-1972)
## 836 Upper secondary education (matriculation examination)
## 837 Primary school or lower secondary school
## 838 Primary education (pre-1972)
## 839 Upper secondary education (matriculation examination)
## 840 Primary school or lower secondary school
## 841 Upper secondary education (matriculation examination)
## 842 Upper secondary education (matriculation examination)
## 843 Primary school or lower secondary school
## 844 Primary school or lower secondary school
## 845 Upper secondary education (matriculation examination)
## 846 Primary education (pre-1972)
## 847 Upper secondary education (matriculation examination)
## 848 Primary education (pre-1972)
## 849 Primary school or lower secondary school
## 850 Primary education (pre-1972)
## 851 Upper secondary education (matriculation examination)
## 852 Primary school or lower secondary school
## 853 Primary school or lower secondary school
## 854 Upper secondary education (matriculation examination)
## 855 Upper secondary education (matriculation examination)
## 856 Primary school or lower secondary school
## 857 Upper secondary education (matriculation examination)
## 858 Upper secondary education (matriculation examination)
## 859 Upper secondary education (matriculation examination)
## 860 Upper secondary education (matriculation examination)
## 861 Upper secondary education (matriculation examination)
## 862 Upper secondary education (matriculation examination)
## 863 Upper secondary education (matriculation examination)
## 864 Upper secondary education (matriculation examination)
## 865 Primary education (pre-1972)
## 866 Upper secondary education (matriculation examination)
## 867 Primary school or lower secondary school
## 868 Upper secondary education (matriculation examination)
## 869 Upper secondary education (matriculation examination)
## 870 Upper secondary education (matriculation examination)
## 871 Upper secondary education (matriculation examination)
## 872 Primary education (pre-1972)
## 873 Primary education (pre-1972)
## 874 Primary school or lower secondary school
## 875 Upper secondary education (matriculation examination)
## 876 Upper secondary education (matriculation examination)
## 877 Upper secondary education (matriculation examination)
## 878 Primary school or lower secondary school
## 879 Upper secondary education (matriculation examination)
## 880 Upper secondary education (matriculation examination)
## 881 Primary school or lower secondary school
## 882 Primary school or lower secondary school
## 883 Primary school or lower secondary school
## 884 Upper secondary education (matriculation examination)
## 885 Upper secondary education (matriculation examination)
## 886 Primary education (pre-1972)
## 887 Upper secondary education (matriculation examination)
## 888 Primary school or lower secondary school
## 889 Primary school or lower secondary school
## 890 Primary school or lower secondary school
## 891 Upper secondary education (matriculation examination)
## 892 Primary school or lower secondary school
## 893 Primary school or lower secondary school
## 894 Upper secondary education (matriculation examination)
## 895 Upper secondary education (matriculation examination)
## 896 Upper secondary education (matriculation examination)
## 897 Primary school or lower secondary school
## 898 Primary school or lower secondary school
## 899 Primary school or lower secondary school
## 900 Upper secondary education (matriculation examination)
## 901 Primary school or lower secondary school
## 902 Primary education (pre-1972)
## 903 Upper secondary education (matriculation examination)
## 904 Upper secondary education (matriculation examination)
## 905 Upper secondary education (matriculation examination)
## 906 Primary school or lower secondary school
## 907 Upper secondary education (matriculation examination)
## 908 Primary school or lower secondary school
## 909 Primary school or lower secondary school
## 910 Primary school or lower secondary school
## 911 Upper secondary education (matriculation examination)
## 912 Upper secondary education (matriculation examination)
## 913 Primary school or lower secondary school
## 914 Upper secondary education (matriculation examination)
## 915 Primary school or lower secondary school
## 916 Primary school or lower secondary school
## 917 Primary school or lower secondary school
## 918 Primary school or lower secondary school
## 919 Upper secondary education (matriculation examination)
## 920 Primary school or lower secondary school
## 921 Primary school or lower secondary school
## 922 Upper secondary education (matriculation examination)
## 923 Primary school or lower secondary school
## 924 Upper secondary education (matriculation examination)
## 925 Upper secondary education (matriculation examination)
## 926 Upper secondary education (matriculation examination)
## 927 Upper secondary education (matriculation examination)
## 928 Upper secondary education (matriculation examination)
## 929 Primary school or lower secondary school
## 930 Upper secondary education (matriculation examination)
## 931 Upper secondary education (matriculation examination)
## 932 Primary school or lower secondary school
## 933 Upper secondary education (matriculation examination)
## 934 Upper secondary education (matriculation examination)
## 935 Primary school or lower secondary school
## 936 Primary school or lower secondary school
## 937 Primary school or lower secondary school
## 938 Primary education (pre-1972)
## 939 Upper secondary education (matriculation examination)
## 940 Upper secondary education (matriculation examination)
## 941 Primary education (pre-1972)
## 942 Primary school or lower secondary school
## 943 Upper secondary education (matriculation examination)
## 944 Upper secondary education (matriculation examination)
## 945 Primary education (pre-1972)
## 946 Primary school or lower secondary school
## 947 Primary school or lower secondary school
## 948 Upper secondary education (matriculation examination)
## 949 Upper secondary education (matriculation examination)
## 950 Upper secondary education (matriculation examination)
## 951 Upper secondary education (matriculation examination)
## 952 Primary school or lower secondary school
## 953 Upper secondary education (matriculation examination)
## 954 Upper secondary education (matriculation examination)
## 955 Primary school or lower secondary school
## 956 Primary school or lower secondary school
## 957 Primary school or lower secondary school
## 958 Primary school or lower secondary school
## 959 Primary education (pre-1972)
## 960 Upper secondary education (matriculation examination)
## 961 Primary school or lower secondary school
## 962 Upper secondary education (matriculation examination)
## 963 Upper secondary education (matriculation examination)
## 964 Upper secondary education (matriculation examination)
## 965 Primary school or lower secondary school
## 966 Primary education (pre-1972)
## 967 Upper secondary education (matriculation examination)
## 968 Primary school or lower secondary school
## 969 Upper secondary education (matriculation examination)
## 970 Primary school or lower secondary school
## 971 Primary school or lower secondary school
## 972 Primary school or lower secondary school
## 973 Primary school or lower secondary school
## 974 Primary school or lower secondary school
## 975 Upper secondary education (matriculation examination)
## 976 Upper secondary education (matriculation examination)
## 977 Upper secondary education (matriculation examination)
## 978 Upper secondary education (matriculation examination)
## 979 Primary education (pre-1972)
## 980 Primary school or lower secondary school
## 981 Upper secondary education (matriculation examination)
## 982 Upper secondary education (matriculation examination)
## 983 Upper secondary education (matriculation examination)
## 984 Primary school or lower secondary school
## 985 Primary education (pre-1972)
## 986 Primary school or lower secondary school
## 987 Upper secondary education (matriculation examination)
## 988 Primary education (pre-1972)
## 989 Primary school or lower secondary school
## 990 Upper secondary education (matriculation examination)
## 991 Primary school or lower secondary school
## 992 Primary school or lower secondary school
## 993 Upper secondary education (matriculation examination)
## 994 Upper secondary education (matriculation examination)
## 995 Upper secondary education (matriculation examination)
## 996 Primary education (pre-1972)
## 997 Primary school or lower secondary school
## 998 Primary education (pre-1972)
## 999 Primary school or lower secondary school
## 1000 Upper secondary education (matriculation examination)
## 1001 Upper secondary education (matriculation examination)
## 1002 Upper secondary education (matriculation examination)
## 1003 Primary school or lower secondary school
## 1004 Upper secondary education (matriculation examination)
## 1005 Upper secondary education (matriculation examination)
## 1006 Upper secondary education (matriculation examination)
## 1007 Upper secondary education (matriculation examination)
## 1008 Upper secondary education (matriculation examination)
## 1009 Primary school or lower secondary school
## 1010 Primary school or lower secondary school
## 1011 Upper secondary education (matriculation examination)
## 1012 Primary school or lower secondary school
## 1013 Upper secondary education (matriculation examination)
## 1014 Primary education (pre-1972)
## 1015 Primary school or lower secondary school
## 1016 Upper secondary education (matriculation examination)
## 1017 Primary school or lower secondary school
## 1018 Primary school or lower secondary school
## 1019 Primary education (pre-1972)
## 1020 Upper secondary education (matriculation examination)
## 1021 Upper secondary education (matriculation examination)
## 1022 Upper secondary education (matriculation examination)
## 1023 Upper secondary education (matriculation examination)
## 1024 Upper secondary education (matriculation examination)
## 1025 Upper secondary education (matriculation examination)
## 1026 Upper secondary education (matriculation examination)
## 1027 Primary school or lower secondary school
## 1028 Primary school or lower secondary school
## 1029 Primary school or lower secondary school
## 1030 Upper secondary education (matriculation examination)
## 1031 Upper secondary education (matriculation examination)
## 1032 Upper secondary education (matriculation examination)
## 1033 Upper secondary education (matriculation examination)
## 1034 Primary school or lower secondary school
## 1035 Primary school or lower secondary school
## 1036 Upper secondary education (matriculation examination)
## 1037 Primary school or lower secondary school
## 1038 Upper secondary education (matriculation examination)
## 1039 Primary school or lower secondary school
## 1040 Upper secondary education (matriculation examination)
## 1041 Primary education (pre-1972)
## 1042 Primary school or lower secondary school
## 1043 Primary education (pre-1972)
## 1044 Upper secondary education (matriculation examination)
## 1045 Primary school or lower secondary school
## 1046 Primary education (pre-1972)
## 1047 Upper secondary education (matriculation examination)
## 1048 Primary school or lower secondary school
## 1049 Primary school or lower secondary school
## 1050 Primary education (pre-1972)
## 1051 Primary education (pre-1972)
## 1052 Primary school or lower secondary school
## 1053 Upper secondary education (matriculation examination)
## 1054 Upper secondary education (matriculation examination)
## 1055 Primary school or lower secondary school
## 1056 Primary school or lower secondary school
## 1057 Primary school or lower secondary school
## 1058 Primary education (pre-1972)
## 1059 Primary school or lower secondary school
## 1060 Primary school or lower secondary school
## 1061 Upper secondary education (matriculation examination)
## 1062 Primary school or lower secondary school
## 1063 Upper secondary education (matriculation examination)
## 1064 Upper secondary education (matriculation examination)
## 1065 Upper secondary education (matriculation examination)
## 1066 Primary school or lower secondary school
## 1067 Upper secondary education (matriculation examination)
## 1068 Primary education (pre-1972)
## 1069 Primary school or lower secondary school
## 1070 Primary school or lower secondary school
## 1071 Primary education (pre-1972)
## 1072 Primary school or lower secondary school
## 1073 Primary school or lower secondary school
## 1074 Primary school or lower secondary school
## 1075 Upper secondary education (matriculation examination)
## 1076 Primary school or lower secondary school
## 1077 Primary school or lower secondary school
## 1078 Primary school or lower secondary school
## 1079 Primary school or lower secondary school
## 1080 Upper secondary education (matriculation examination)
## 1081 Upper secondary education (matriculation examination)
## 1082 Primary school or lower secondary school
## 1083 Primary school or lower secondary school
## 1084 Upper secondary education (matriculation examination)
## 1085 Upper secondary education (matriculation examination)
## 1086 Primary school or lower secondary school
## 1087 Upper secondary education (matriculation examination)
## 1088 Primary school or lower secondary school
## 1089 Primary school or lower secondary school
## 1090 Primary school or lower secondary school
## 1091 Primary school or lower secondary school
## 1092 Primary school or lower secondary school
## 1093 Upper secondary education (matriculation examination)
## 1094 Upper secondary education (matriculation examination)
## 1095 Upper secondary education (matriculation examination)
## 1096 Primary school or lower secondary school
## 1097 Primary school or lower secondary school
## 1098 Upper secondary education (matriculation examination)
## 1099 Upper secondary education (matriculation examination)
## 1100 Upper secondary education (matriculation examination)
## 1101 Upper secondary education (matriculation examination)
## 1102 Primary school or lower secondary school
## 1103 Upper secondary education (matriculation examination)
## 1104 Upper secondary education (matriculation examination)
## 1105 Upper secondary education (matriculation examination)
## 1106 Upper secondary education (matriculation examination)
## 1107 Upper secondary education (matriculation examination)
## 1108 Upper secondary education (matriculation examination)
## 1109 Upper secondary education (matriculation examination)
## 1110 Primary school or lower secondary school
## 1111 Upper secondary education (matriculation examination)
## 1112 Upper secondary education (matriculation examination)
## 1113 Primary school or lower secondary school
## 1114 Upper secondary education (matriculation examination)
## 1115 Primary education (pre-1972)
## 1116 Upper secondary education (matriculation examination)
## 1117 Upper secondary education (matriculation examination)
## 1118 Upper secondary education (matriculation examination)
## 1119 Upper secondary education (matriculation examination)
## 1120 Primary school or lower secondary school
## 1121 Upper secondary education (matriculation examination)
## 1122 Primary school or lower secondary school
## 1123 Primary school or lower secondary school
## 1124 Primary school or lower secondary school
## 1125 Primary school or lower secondary school
## 1126 Primary school or lower secondary school
## 1127 Primary school or lower secondary school
## 1128 Primary school or lower secondary school
## 1129 Upper secondary education (matriculation examination)
## 1130 Upper secondary education (matriculation examination)
## 1131 Upper secondary education (matriculation examination)
## 1132 Upper secondary education (matriculation examination)
## 1133 Primary school or lower secondary school
## 1134 Upper secondary education (matriculation examination)
## 1135 Upper secondary education (matriculation examination)
## 1136 Upper secondary education (matriculation examination)
## 1137 Primary school or lower secondary school
## 1138 Upper secondary education (matriculation examination)
## 1139 Upper secondary education (matriculation examination)
## 1140 Upper secondary education (matriculation examination)
## 1141 Upper secondary education (matriculation examination)
## 1142 Upper secondary education (matriculation examination)
## 1143 Primary school or lower secondary school
## 1144 Upper secondary education (matriculation examination)
## 1145 Primary school or lower secondary school
## 1146 Primary school or lower secondary school
## 1147 Upper secondary education (matriculation examination)
## 1148 Primary education (pre-1972)
## 1149 Primary school or lower secondary school
## 1150 Primary school or lower secondary school
## 1151 Primary school or lower secondary school
## 1152 Primary school or lower secondary school
## 1153 Upper secondary education (matriculation examination)
## 1154 Primary school or lower secondary school
## 1155 Primary school or lower secondary school
## 1156 Upper secondary education (matriculation examination)
## 1157 Upper secondary education (matriculation examination)
## 1158 Primary school or lower secondary school
## 1159 Primary school or lower secondary school
## 1160 Upper secondary education (matriculation examination)
## 1161 Upper secondary education (matriculation examination)
## 1162 Upper secondary education (matriculation examination)
## 1163 Primary school or lower secondary school
## 1164 Upper secondary education (matriculation examination)
## 1165 Upper secondary education (matriculation examination)
## 1166 Primary school or lower secondary school
## 1167 Primary school or lower secondary school
## 1168 Upper secondary education (matriculation examination)
## 1169 Upper secondary education (matriculation examination)
## 1170 Upper secondary education (matriculation examination)
## 1171 Upper secondary education (matriculation examination)
## 1172 Upper secondary education (matriculation examination)
## 1173 Primary school or lower secondary school
## 1174 Primary school or lower secondary school
## 1175 Primary school or lower secondary school
## 1176 Upper secondary education (matriculation examination)
## 1177 Primary school or lower secondary school
## 1178 Primary school or lower secondary school
## 1179 Primary education (pre-1972)
## 1180 Upper secondary education (matriculation examination)
## 1181 Upper secondary education (matriculation examination)
## 1182 Primary school or lower secondary school
## 1183 Primary school or lower secondary school
## 1184 Primary school or lower secondary school
## 1185 Primary school or lower secondary school
## 1186 Upper secondary education (matriculation examination)
## 1187 Primary school or lower secondary school
## 1188 Upper secondary education (matriculation examination)
## 1189 Primary school or lower secondary school
## 1190 Primary school or lower secondary school
## 1191 Primary school or lower secondary school
## 1192 Upper secondary education (matriculation examination)
## 1193 Primary school or lower secondary school
## 1194 Primary education (pre-1972)
## 1195 Upper secondary education (matriculation examination)
## 1196 Primary school or lower secondary school
## 1197 Upper secondary education (matriculation examination)
## 1198 Primary school or lower secondary school
## 1199 Primary school or lower secondary school
## 1200 Primary school or lower secondary school
## 1201 Upper secondary education (matriculation examination)
## 1202 Upper secondary education (matriculation examination)
## 1203 Upper secondary education (matriculation examination)
## 1204 Primary school or lower secondary school
## 1205 Primary school or lower secondary school
## 1206 Upper secondary education (matriculation examination)
## 1207 Primary school or lower secondary school
## 1208 Primary school or lower secondary school
## 1209 Primary school or lower secondary school
## 1210 Upper secondary education (matriculation examination)
## 1211 Primary school or lower secondary school
## 1212 Upper secondary education (matriculation examination)
## 1213 Primary school or lower secondary school
## 1214 Upper secondary education (matriculation examination)
## 1215 Upper secondary education (matriculation examination)
## 1216 Upper secondary education (matriculation examination)
## 1217 Upper secondary education (matriculation examination)
## 1218 Upper secondary education (matriculation examination)
## 1219 Primary education (pre-1972)
## 1220 Primary school or lower secondary school
## 1221 Primary school or lower secondary school
## 1222 Upper secondary education (matriculation examination)
## 1223 Primary education (pre-1972)
## 1224 Primary school or lower secondary school
## 1225 Upper secondary education (matriculation examination)
## 1226 Upper secondary education (matriculation examination)
## 1227 Primary education (pre-1972)
## 1228 Upper secondary education (matriculation examination)
## 1229 Upper secondary education (matriculation examination)
## 1230 Upper secondary education (matriculation examination)
## 1231 Upper secondary education (matriculation examination)
## 1232 Primary school or lower secondary school
## 1233 Upper secondary education (matriculation examination)
## 1234 Primary school or lower secondary school
## 1235 Upper secondary education (matriculation examination)
## 1236 Upper secondary education (matriculation examination)
## 1237 Upper secondary education (matriculation examination)
## 1238 Primary school or lower secondary school
## 1239 Upper secondary education (matriculation examination)
## 1240 Upper secondary education (matriculation examination)
## 1241 Upper secondary education (matriculation examination)
## 1242 Upper secondary education (matriculation examination)
## 1243 Upper secondary education (matriculation examination)
## 1244 Primary school or lower secondary school
## 1245 Primary school or lower secondary school
## 1246 Upper secondary education (matriculation examination)
## 1247 Upper secondary education (matriculation examination)
## 1248 Upper secondary education (matriculation examination)
## 1249 Primary school or lower secondary school
## 1250 Upper secondary education (matriculation examination)
## 1251 Primary school or lower secondary school
## 1252 Upper secondary education (matriculation examination)
## 1253 Primary school or lower secondary school
## 1254 Primary school or lower secondary school
## 1255 Primary school or lower secondary school
## 1256 Upper secondary education (matriculation examination)
## 1257 Primary school or lower secondary school
## 1258 Upper secondary education (matriculation examination)
## 1259 Primary school or lower secondary school
## 1260 Primary school or lower secondary school
## 1261 Primary school or lower secondary school
## 1262 Upper secondary education (matriculation examination)
## 1263 Primary education (pre-1972)
## 1264 Primary school or lower secondary school
## 1265 Upper secondary education (matriculation examination)
## 1266 Upper secondary education (matriculation examination)
## 1267 Primary school or lower secondary school
## 1268 Primary school or lower secondary school
## 1269 Upper secondary education (matriculation examination)
## 1270 Primary school or lower secondary school
## 1271 Primary school or lower secondary school
## 1272 Upper secondary education (matriculation examination)
## 1273 Primary school or lower secondary school
## 1274 Primary education (pre-1972)
## 1275 Primary education (pre-1972)
## 1276 Upper secondary education (matriculation examination)
## 1277 Upper secondary education (matriculation examination)
## 1278 Primary education (pre-1972)
## 1279 Upper secondary education (matriculation examination)
## 1280 Upper secondary education (matriculation examination)
## 1281 Primary school or lower secondary school
## 1282 Upper secondary education (matriculation examination)
## 1283 Primary school or lower secondary school
## 1284 Upper secondary education (matriculation examination)
## 1285 Primary school or lower secondary school
## 1286 Upper secondary education (matriculation examination)
## 1287 Upper secondary education (matriculation examination)
## 1288 Primary school or lower secondary school
## 1289 Upper secondary education (matriculation examination)
## 1290 Primary school or lower secondary school
## 1291 Upper secondary education (matriculation examination)
## 1292 Upper secondary education (matriculation examination)
## 1293 Upper secondary education (matriculation examination)
## 1294 Upper secondary education (matriculation examination)
## 1295 Upper secondary education (matriculation examination)
## 1296 Primary school or lower secondary school
## 1297 Upper secondary education (matriculation examination)
## 1298 Upper secondary education (matriculation examination)
## 1299 Upper secondary education (matriculation examination)
## 1300 Upper secondary education (matriculation examination)
## 1301 Upper secondary education (matriculation examination)
## 1302 Upper secondary education (matriculation examination)
## 1303 Upper secondary education (matriculation examination)
## 1304 Upper secondary education (matriculation examination)
## 1305 Upper secondary education (matriculation examination)
## 1306 Upper secondary education (matriculation examination)
## 1307 Upper secondary education (matriculation examination)
## 1308 Primary school or lower secondary school
## 1309 Upper secondary education (matriculation examination)
## 1310 Upper secondary education (matriculation examination)
## 1311 Primary education (pre-1972)
## 1312 Upper secondary education (matriculation examination)
## 1313 Upper secondary education (matriculation examination)
## 1314 Upper secondary education (matriculation examination)
## 1315 Primary school or lower secondary school
## 1316 Upper secondary education (matriculation examination)
## 1317 Primary school or lower secondary school
## 1318 Primary education (pre-1972)
## 1319 Primary school or lower secondary school
## 1320 Upper secondary education (matriculation examination)
## 1321 Primary school or lower secondary school
## 1322 Primary school or lower secondary school
## 1323 Upper secondary education (matriculation examination)
## 1324 Primary school or lower secondary school
## 1325 Upper secondary education (matriculation examination)
## 1326 Primary education (pre-1972)
## 1327 Upper secondary education (matriculation examination)
## 1328 Primary school or lower secondary school
## 1329 Upper secondary education (matriculation examination)
## 1330 Primary school or lower secondary school
## 1331 Upper secondary education (matriculation examination)
## 1332 Upper secondary education (matriculation examination)
## 1333 Primary school or lower secondary school
## 1334 Upper secondary education (matriculation examination)
## 1335 Primary school or lower secondary school
## 1336 Primary school or lower secondary school
## 1337 Primary school or lower secondary school
## 1338 Primary school or lower secondary school
## 1339 Upper secondary education (matriculation examination)
## 1340 Upper secondary education (matriculation examination)
## 1341 Primary school or lower secondary school
## 1342 Upper secondary education (matriculation examination)
## 1343 Primary school or lower secondary school
## 1344 Upper secondary education (matriculation examination)
## 1345 Upper secondary education (matriculation examination)
## 1346 Upper secondary education (matriculation examination)
## 1347 Primary school or lower secondary school
## 1348 Primary school or lower secondary school
## 1349 Upper secondary education (matriculation examination)
## 1350 Upper secondary education (matriculation examination)
## 1351 Upper secondary education (matriculation examination)
## 1352 Upper secondary education (matriculation examination)
## 1353 Upper secondary education (matriculation examination)
## 1354 Upper secondary education (matriculation examination)
## 1355 Upper secondary education (matriculation examination)
## 1356 Upper secondary education (matriculation examination)
## 1357 Upper secondary education (matriculation examination)
## 1358 Upper secondary education (matriculation examination)
## 1359 Primary school or lower secondary school
## 1360 Primary school or lower secondary school
## 1361 Primary school or lower secondary school
## 1362 Primary school or lower secondary school
## 1363 Primary school or lower secondary school
## 1364 Primary school or lower secondary school
## 1365 Primary school or lower secondary school
## 1366 Upper secondary education (matriculation examination)
## 1367 Upper secondary education (matriculation examination)
## 1368 Upper secondary education (matriculation examination)
## 1369 Primary school or lower secondary school
## 1370 Upper secondary education (matriculation examination)
## 1371 Upper secondary education (matriculation examination)
## 1372 Primary school or lower secondary school
## 1373 Upper secondary education (matriculation examination)
## 1374 Primary school or lower secondary school
## 1375 Primary school or lower secondary school
## 1376 Primary school or lower secondary school
## 1377 Primary school or lower secondary school
## 1378 Primary school or lower secondary school
## 1379 Primary school or lower secondary school
## 1380 Primary school or lower secondary school
## 1381 Primary education (pre-1972)
## 1382 Primary school or lower secondary school
## 1383 Upper secondary education (matriculation examination)
## 1384 Primary school or lower secondary school
## 1385 Primary school or lower secondary school
## 1386 Primary school or lower secondary school
## 1387 Primary education (pre-1972)
## 1388 Primary school or lower secondary school
## 1389 Primary school or lower secondary school
## 1390 Upper secondary education (matriculation examination)
## 1391 Upper secondary education (matriculation examination)
## 1392 Upper secondary education (matriculation examination)
## 1393 Primary school or lower secondary school
## 1394 Primary school or lower secondary school
## 1395 Upper secondary education (matriculation examination)
## 1396 Primary school or lower secondary school
## 1397 Primary school or lower secondary school
## 1398 Primary school or lower secondary school
## 1399 Upper secondary education (matriculation examination)
## 1400 Upper secondary education (matriculation examination)
## 1401 Primary school or lower secondary school
## 1402 Primary school or lower secondary school
## 1403 Primary school or lower secondary school
## 1404 Primary school or lower secondary school
## 1405 Upper secondary education (matriculation examination)
## 1406 Upper secondary education (matriculation examination)
## 1407 Upper secondary education (matriculation examination)
## 1408 Primary school or lower secondary school
## 1409 Upper secondary education (matriculation examination)
## 1410 Upper secondary education (matriculation examination)
## 1411 Upper secondary education (matriculation examination)
## 1412 Upper secondary education (matriculation examination)
## 1413 Primary school or lower secondary school
## 1414 Primary school or lower secondary school
## 1415 Primary school or lower secondary school
## 1416 Primary school or lower secondary school
## 1417 Primary school or lower secondary school
## 1418 Upper secondary education (matriculation examination)
## 1419 Primary school or lower secondary school
## 1420 Upper secondary education (matriculation examination)
## 1421 Upper secondary education (matriculation examination)
## 1422 Primary education (pre-1972)
## 1423 Upper secondary education (matriculation examination)
## 1424 Upper secondary education (matriculation examination)
## 1425 Upper secondary education (matriculation examination)
## 1426 Primary school or lower secondary school
## 1427 Upper secondary education (matriculation examination)
## 1428 Primary school or lower secondary school
## 1429 Upper secondary education (matriculation examination)
## 1430 Upper secondary education (matriculation examination)
## 1431 Upper secondary education (matriculation examination)
## 1432 Upper secondary education (matriculation examination)
## 1433 Upper secondary education (matriculation examination)
## 1434 Upper secondary education (matriculation examination)
## 1435 Upper secondary education (matriculation examination)
## 1436 Primary school or lower secondary school
## 1437 Primary school or lower secondary school
## 1438 Primary school or lower secondary school
## 1439 Primary school or lower secondary school
## 1440 Upper secondary education (matriculation examination)
## 1441 Primary school or lower secondary school
## 1442 Upper secondary education (matriculation examination)
## 1443 Upper secondary education (matriculation examination)
## 1444 Upper secondary education (matriculation examination)
## 1445 Primary school or lower secondary school
## 1446 Upper secondary education (matriculation examination)
## 1447 Upper secondary education (matriculation examination)
## 1448 Upper secondary education (matriculation examination)
## 1449 Primary school or lower secondary school
## 1450 Primary school or lower secondary school
## 1451 Upper secondary education (matriculation examination)
## 1452 Upper secondary education (matriculation examination)
## 1453 Primary school or lower secondary school
## 1454 Upper secondary education (matriculation examination)
## 1455 Primary school or lower secondary school
## 1456 Upper secondary education (matriculation examination)
## 1457 Primary school or lower secondary school
## 1458 Primary school or lower secondary school
## 1459 Primary education (pre-1972)
## 1460 Upper secondary education (matriculation examination)
## 1461 Primary school or lower secondary school
## 1462 Upper secondary education (matriculation examination)
## 1463 Upper secondary education (matriculation examination)
## 1464 Primary school or lower secondary school
## 1465 Primary school or lower secondary school
## 1466 Upper secondary education (matriculation examination)
## 1467 Upper secondary education (matriculation examination)
## 1468 Primary school or lower secondary school
## 1469 Upper secondary education (matriculation examination)
## 1470 Primary school or lower secondary school
## 1471 Primary school or lower secondary school
## 1472 Upper secondary education (matriculation examination)
## 1473 Upper secondary education (matriculation examination)
## 1474 Primary school or lower secondary school
## 1475 Upper secondary education (matriculation examination)
## 1476 Primary school or lower secondary school
## 1477 Upper secondary education (matriculation examination)
## 1478 Upper secondary education (matriculation examination)
## 1479 Primary school or lower secondary school
## 1480 Primary school or lower secondary school
## 1481 Primary school or lower secondary school
## 1482 Primary school or lower secondary school
## 1483 Primary school or lower secondary school
## 1484 Primary school or lower secondary school
## 1485 Upper secondary education (matriculation examination)
## 1486 Upper secondary education (matriculation examination)
## 1487 Upper secondary education (matriculation examination)
## 1488 Upper secondary education (matriculation examination)
## 1489 Primary education (pre-1972)
## 1490 Primary school or lower secondary school
## 1491 Primary school or lower secondary school
## 1492 Primary school or lower secondary school
## 1493 Primary education (pre-1972)
## 1494 Upper secondary education (matriculation examination)
## 1495 Primary school or lower secondary school
## 1496 Upper secondary education (matriculation examination)
## 1497 Primary school or lower secondary school
## 1498 Primary school or lower secondary school
## 1499 Upper secondary education (matriculation examination)
## 1500 Upper secondary education (matriculation examination)
## 1501 Upper secondary education (matriculation examination)
## 1502 Primary school or lower secondary school
## 1503 Primary school or lower secondary school
## 1504 Primary school or lower secondary school
## 1505 Primary school or lower secondary school
## 1506 Primary school or lower secondary school
## 1507 Upper secondary education (matriculation examination)
## 1508 Upper secondary education (matriculation examination)
## 1509 Primary school or lower secondary school
## 1510 Primary school or lower secondary school
## 1511 Upper secondary education (matriculation examination)
## 1512 Primary school or lower secondary school
## 1513 Upper secondary education (matriculation examination)
## 1514 Upper secondary education (matriculation examination)
## 1515 Primary school or lower secondary school
## 1516 Upper secondary education (matriculation examination)
## 1517 Primary school or lower secondary school
## 1518 Primary school or lower secondary school
## 1519 Upper secondary education (matriculation examination)
## 1520 Upper secondary education (matriculation examination)
## 1521 Primary school or lower secondary school
## 1522 Upper secondary education (matriculation examination)
## 1523 Upper secondary education (matriculation examination)
## 1524 Primary school or lower secondary school
## 1525 Upper secondary education (matriculation examination)
## 1526 Upper secondary education (matriculation examination)
## 1527 Primary school or lower secondary school
## 1528 Upper secondary education (matriculation examination)
## 1529 Primary school or lower secondary school
## 1530 Primary school or lower secondary school
## 1531 Primary education (pre-1972)
## 1532 Primary school or lower secondary school
## 1533 Upper secondary education (matriculation examination)
## 1534 Upper secondary education (matriculation examination)
## 1535 Primary school or lower secondary school
## 1536 Primary school or lower secondary school
## 1537 Upper secondary education (matriculation examination)
## 1538 Upper secondary education (matriculation examination)
## 1539 Upper secondary education (matriculation examination)
## 1540 Primary school or lower secondary school
## 1541 Upper secondary education (matriculation examination)
## 1542 Primary education (pre-1972)
## 1543 Primary school or lower secondary school
## 1544 Primary school or lower secondary school
## 1545 Primary education (pre-1972)
## 1546 Upper secondary education (matriculation examination)
## 1547 Upper secondary education (matriculation examination)
## 1548 Upper secondary education (matriculation examination)
## 1549 Primary school or lower secondary school
## 1550 Upper secondary education (matriculation examination)
## 1551 Primary school or lower secondary school
## 1552 Primary school or lower secondary school
## 1553 Primary school or lower secondary school
## 1554 Primary school or lower secondary school
## 1555 Primary school or lower secondary school
## 1556 Primary education (pre-1972)
## 1557 Upper secondary education (matriculation examination)
## 1558 Primary school or lower secondary school
## 1559 Primary school or lower secondary school
## 1560 Primary school or lower secondary school
## 1561 Upper secondary education (matriculation examination)
## 1562 Upper secondary education (matriculation examination)
## 1563 Upper secondary education (matriculation examination)
## 1564 Upper secondary education (matriculation examination)
## 1565 Upper secondary education (matriculation examination)
## 1566 Upper secondary education (matriculation examination)
## 1567 Upper secondary education (matriculation examination)
## 1568 Upper secondary education (matriculation examination)
## 1569 Upper secondary education (matriculation examination)
## 1570 Upper secondary education (matriculation examination)
## 1571 Primary school or lower secondary school
## 1572 Upper secondary education (matriculation examination)
## 1573 Primary education (pre-1972)
## 1574 Primary education (pre-1972)
## 1575 Primary school or lower secondary school
## 1576 Upper secondary education (matriculation examination)
## 1577 Primary school or lower secondary school
## 1578 Upper secondary education (matriculation examination)
## 1579 Upper secondary education (matriculation examination)
## 1580 Primary school or lower secondary school
## 1581 Upper secondary education (matriculation examination)
## 1582 Primary school or lower secondary school
## 1583 Primary school or lower secondary school
## 1584 Upper secondary education (matriculation examination)
## 1585 Primary school or lower secondary school
## 1586 Primary education (pre-1972)
## 1587 Primary school or lower secondary school
## 1588 Primary school or lower secondary school
## 1589 Upper secondary education (matriculation examination)
## 1590 Primary school or lower secondary school
## 1591 Upper secondary education (matriculation examination)
## 1592 Upper secondary education (matriculation examination)
## 1593 Primary school or lower secondary school
## 1594 Upper secondary education (matriculation examination)
## 1595 Upper secondary education (matriculation examination)
## 1596 Upper secondary education (matriculation examination)
## 1597 Upper secondary education (matriculation examination)
## 1598 Upper secondary education (matriculation examination)
## 1599 Primary school or lower secondary school
## 1600 Upper secondary education (matriculation examination)
## 1601 Upper secondary education (matriculation examination)
## 1602 Upper secondary education (matriculation examination)
## 1603 Upper secondary education (matriculation examination)
## 1604 Upper secondary education (matriculation examination)
## 1605 Upper secondary education (matriculation examination)
## 1606 Upper secondary education (matriculation examination)
## 1607 Primary school or lower secondary school
## 1608 Upper secondary education (matriculation examination)
## 1609 Primary school or lower secondary school
## 1610 Upper secondary education (matriculation examination)
## 1611 Upper secondary education (matriculation examination)
## 1612 Upper secondary education (matriculation examination)
## 1613 Primary school or lower secondary school
## 1614 Primary school or lower secondary school
## 1615 Upper secondary education (matriculation examination)
## 1616 Upper secondary education (matriculation examination)
## 1617 Upper secondary education (matriculation examination)
## 1618 Upper secondary education (matriculation examination)
## 1619 Upper secondary education (matriculation examination)
## 1620 Upper secondary education (matriculation examination)
## 1621 Primary school or lower secondary school
## 1622 Upper secondary education (matriculation examination)
## 1623 Upper secondary education (matriculation examination)
## 1624 Upper secondary education (matriculation examination)
## 1625 Upper secondary education (matriculation examination)
## 1626 Upper secondary education (matriculation examination)
## 1627 Upper secondary education (matriculation examination)
## 1628 Upper secondary education (matriculation examination)
## 1629 Primary school or lower secondary school
## 1630 Upper secondary education (matriculation examination)
## 1631 Upper secondary education (matriculation examination)
## 1632 Upper secondary education (matriculation examination)
## 1633 Upper secondary education (matriculation examination)
## 1634 Upper secondary education (matriculation examination)
## 1635 Primary school or lower secondary school
## 1636 Upper secondary education (matriculation examination)
## 1637 Primary school or lower secondary school
## 1638 Upper secondary education (matriculation examination)
## 1639 Upper secondary education (matriculation examination)
## 1640 Upper secondary education (matriculation examination)
## 1641 Upper secondary education (matriculation examination)
## 1642 Primary school or lower secondary school
## 1643 Primary school or lower secondary school
## 1644 Upper secondary education (matriculation examination)
## 1645 Upper secondary education (matriculation examination)
## 1646 Upper secondary education (matriculation examination)
## 1647 Upper secondary education (matriculation examination)
## 1648 Upper secondary education (matriculation examination)
## 1649 Upper secondary education (matriculation examination)
## 1650 Upper secondary education (matriculation examination)
## 1651 Upper secondary education (matriculation examination)
## 1652 Upper secondary education (matriculation examination)
## 1653 Upper secondary education (matriculation examination)
## 1654 Upper secondary education (matriculation examination)
## 1655 Upper secondary education (matriculation examination)
## 1656 Upper secondary education (matriculation examination)
## 1657 Upper secondary education (matriculation examination)
## 1658 Primary education (pre-1972)
## 1659 Upper secondary education (matriculation examination)
## 1660 Upper secondary education (matriculation examination)
## 1661 Upper secondary education (matriculation examination)
## 1662 Upper secondary education (matriculation examination)
## 1663 Upper secondary education (matriculation examination)
## 1664 Upper secondary education (matriculation examination)
## 1665 Upper secondary education (matriculation examination)
## 1666 Primary school or lower secondary school
## 1667 Upper secondary education (matriculation examination)
## 1668 Upper secondary education (matriculation examination)
## 1669 Primary education (pre-1972)
## 1670 Upper secondary education (matriculation examination)
## 1671 Upper secondary education (matriculation examination)
## 1672 Upper secondary education (matriculation examination)
## 1673 Upper secondary education (matriculation examination)
## 1674 Upper secondary education (matriculation examination)
## 1675 Upper secondary education (matriculation examination)
## 1676 Upper secondary education (matriculation examination)
## 1677 Primary school or lower secondary school
## 1678 Upper secondary education (matriculation examination)
## 1679 Upper secondary education (matriculation examination)
## 1680 Upper secondary education (matriculation examination)
## 1681 Upper secondary education (matriculation examination)
## 1682 Primary school or lower secondary school
## 1683 Upper secondary education (matriculation examination)
## 1684 Upper secondary education (matriculation examination)
## 1685 Primary school or lower secondary school
## 1686 Upper secondary education (matriculation examination)
## 1687 Upper secondary education (matriculation examination)
## 1688 Upper secondary education (matriculation examination)
## 1689 Upper secondary education (matriculation examination)
## 1690 Primary school or lower secondary school
## 1691 Upper secondary education (matriculation examination)
## 1692 Upper secondary education (matriculation examination)
## 1693 Upper secondary education (matriculation examination)
## 1694 Upper secondary education (matriculation examination)
## 1695 Primary school or lower secondary school
## 1696 Upper secondary education (matriculation examination)
## 1697 Upper secondary education (matriculation examination)
## 1698 Primary school or lower secondary school
## 1699 Upper secondary education (matriculation examination)
## 1700 Upper secondary education (matriculation examination)
## 1701 Upper secondary education (matriculation examination)
## 1702 Upper secondary education (matriculation examination)
## 1703 Upper secondary education (matriculation examination)
## 1704 Primary school or lower secondary school
## 1705 Primary school or lower secondary school
## 1706 Primary school or lower secondary school
## 1707 Upper secondary education (matriculation examination)
## 1708 Upper secondary education (matriculation examination)
## 1709 Primary education (pre-1972)
## 1710 Primary education (pre-1972)
## 1711 Primary school or lower secondary school
## 1712 Upper secondary education (matriculation examination)
## 1713 Primary school or lower secondary school
## 1714 Upper secondary education (matriculation examination)
## 1715 Upper secondary education (matriculation examination)
## 1716 Upper secondary education (matriculation examination)
## 1717 Upper secondary education (matriculation examination)
## 1718 Primary school or lower secondary school
## 1719 Primary school or lower secondary school
## 1720 Primary school or lower secondary school
## 1721 Upper secondary education (matriculation examination)
## 1722 Primary school or lower secondary school
## 1723 Primary school or lower secondary school
## 1724 Upper secondary education (matriculation examination)
## 1725 Upper secondary education (matriculation examination)
## 1726 Primary school or lower secondary school
## 1727 Upper secondary education (matriculation examination)
## 1728 Upper secondary education (matriculation examination)
## 1729 Upper secondary education (matriculation examination)
## 1730 Upper secondary education (matriculation examination)
## 1731 Upper secondary education (matriculation examination)
## 1732 Primary school or lower secondary school
## 1733 Primary school or lower secondary school
## 1734 Upper secondary education (matriculation examination)
## 1735 Primary school or lower secondary school
## 1736 Upper secondary education (matriculation examination)
## 1737 Upper secondary education (matriculation examination)
## 1738 Primary school or lower secondary school
## 1739 Upper secondary education (matriculation examination)
## 1740 Primary school or lower secondary school
## 1741 Upper secondary education (matriculation examination)
## 1742 Upper secondary education (matriculation examination)
## 1743 Upper secondary education (matriculation examination)
## 1744 Primary school or lower secondary school
## 1745 Upper secondary education (matriculation examination)
## 1746 Upper secondary education (matriculation examination)
## 1747 Upper secondary education (matriculation examination)
## 1748 Upper secondary education (matriculation examination)
## 1749 Upper secondary education (matriculation examination)
## 1750 Upper secondary education (matriculation examination)
## 1751 Upper secondary education (matriculation examination)
## 1752 Primary school or lower secondary school
## 1753 Upper secondary education (matriculation examination)
## 1754 Primary school or lower secondary school
## 1755 Upper secondary education (matriculation examination)
## 1756 Upper secondary education (matriculation examination)
## 1757 Upper secondary education (matriculation examination)
## 1758 Upper secondary education (matriculation examination)
## 1759 Primary school or lower secondary school
## 1760 Upper secondary education (matriculation examination)
## 1761 Primary school or lower secondary school
## 1762 Upper secondary education (matriculation examination)
## 1763 Primary school or lower secondary school
## 1764 Primary education (pre-1972)
## 1765 Upper secondary education (matriculation examination)
## 1766 Upper secondary education (matriculation examination)
## 1767 Primary school or lower secondary school
## 1768 Upper secondary education (matriculation examination)
## 1769 Upper secondary education (matriculation examination)
## 1770 Upper secondary education (matriculation examination)
## 1771 Primary school or lower secondary school
## 1772 Upper secondary education (matriculation examination)
## 1773 Upper secondary education (matriculation examination)
## 1774 Upper secondary education (matriculation examination)
## 1775 Upper secondary education (matriculation examination)
## 1776 Upper secondary education (matriculation examination)
## 1777 Upper secondary education (matriculation examination)
## 1778 Upper secondary education (matriculation examination)
## 1779 Upper secondary education (matriculation examination)
## 1780 Upper secondary education (matriculation examination)
## 1781 Upper secondary education (matriculation examination)
## 1782 Upper secondary education (matriculation examination)
## 1783 Upper secondary education (matriculation examination)
## 1784 Upper secondary education (matriculation examination)
## 1785 Upper secondary education (matriculation examination)
## 1786 Primary school or lower secondary school
## 1787 Upper secondary education (matriculation examination)
## 1788 Upper secondary education (matriculation examination)
## 1789 Primary school or lower secondary school
## 1790 Upper secondary education (matriculation examination)
## 1791 Upper secondary education (matriculation examination)
## 1792 Upper secondary education (matriculation examination)
## 1793 Upper secondary education (matriculation examination)
## 1794 Primary school or lower secondary school
## 1795 Upper secondary education (matriculation examination)
## 1796 Upper secondary education (matriculation examination)
## 1797 Upper secondary education (matriculation examination)
## 1798 Primary school or lower secondary school
## 1799 Upper secondary education (matriculation examination)
## 1800 Upper secondary education (matriculation examination)
## 1801 Primary school or lower secondary school
## 1802 Primary school or lower secondary school
## 1803 Upper secondary education (matriculation examination)
## 1804 Upper secondary education (matriculation examination)
## 1805 Upper secondary education (matriculation examination)
## 1806 Primary school or lower secondary school
## 1807 Upper secondary education (matriculation examination)
## 1808 Primary school or lower secondary school
## 1809 Primary education (pre-1972)
## 1810 Upper secondary education (matriculation examination)
## 1811 Upper secondary education (matriculation examination)
## 1812 Primary school or lower secondary school
## 1813 Upper secondary education (matriculation examination)
## 1814 Primary school or lower secondary school
## 1815 Primary school or lower secondary school
## 1816 Upper secondary education (matriculation examination)
## 1817 Upper secondary education (matriculation examination)
## 1818 Primary school or lower secondary school
## 1819 Primary school or lower secondary school
## 1820 Upper secondary education (matriculation examination)
## 1821 Upper secondary education (matriculation examination)
## 1822 Upper secondary education (matriculation examination)
## 1823 Upper secondary education (matriculation examination)
## 1824 Upper secondary education (matriculation examination)
## 1825 Primary school or lower secondary school
## 1826 Upper secondary education (matriculation examination)
## 1827 Primary school or lower secondary school
## 1828 Upper secondary education (matriculation examination)
## 1829 Upper secondary education (matriculation examination)
## 1830 Upper secondary education (matriculation examination)
## 1831 Primary school or lower secondary school
## 1832 Primary school or lower secondary school
## 1833 Upper secondary education (matriculation examination)
## 1834 Upper secondary education (matriculation examination)
## 1835 Upper secondary education (matriculation examination)
## 1836 Primary school or lower secondary school
## 1837 Primary school or lower secondary school
## 1838 Upper secondary education (matriculation examination)
## 1839 Upper secondary education (matriculation examination)
## 1840 Upper secondary education (matriculation examination)
## 1841 Upper secondary education (matriculation examination)
## 1842 Upper secondary education (matriculation examination)
## 1843 Upper secondary education (matriculation examination)
## 1844 Primary school or lower secondary school
## 1845 Upper secondary education (matriculation examination)
## 1846 Upper secondary education (matriculation examination)
## 1847 Upper secondary education (matriculation examination)
## 1848 Upper secondary education (matriculation examination)
## 1849 Upper secondary education (matriculation examination)
## 1850 Primary school or lower secondary school
## 1851 Upper secondary education (matriculation examination)
## 1852 Upper secondary education (matriculation examination)
## 1853 Upper secondary education (matriculation examination)
## 1854 Primary school or lower secondary school
## 1855 Upper secondary education (matriculation examination)
## 1856 Upper secondary education (matriculation examination)
## 1857 Upper secondary education (matriculation examination)
## 1858 Primary school or lower secondary school
## 1859 Primary school or lower secondary school
## 1860 Upper secondary education (matriculation examination)
## 1861 Upper secondary education (matriculation examination)
## 1862 Upper secondary education (matriculation examination)
## 1863 Upper secondary education (matriculation examination)
## 1864 Upper secondary education (matriculation examination)
## 1865 Primary school or lower secondary school
## 1866 Upper secondary education (matriculation examination)
## 1867 Upper secondary education (matriculation examination)
## 1868 Upper secondary education (matriculation examination)
## 1869 Primary school or lower secondary school
## 1870 Upper secondary education (matriculation examination)
## 1871 Upper secondary education (matriculation examination)
## 1872 Upper secondary education (matriculation examination)
## 1873 Upper secondary education (matriculation examination)
## 1874 Upper secondary education (matriculation examination)
## 1875 Upper secondary education (matriculation examination)
## 1876 Primary school or lower secondary school
## 1877 Primary school or lower secondary school
## 1878 Upper secondary education (matriculation examination)
## 1879 Primary school or lower secondary school
## 1880 Primary school or lower secondary school
## 1881 Primary school or lower secondary school
## 1882 Primary education (pre-1972)
## 1883 Upper secondary education (matriculation examination)
## 1884 Primary school or lower secondary school
## 1885 Primary school or lower secondary school
## 1886 Primary school or lower secondary school
## 1887 Primary school or lower secondary school
## 1888 Primary school or lower secondary school
## 1889 Primary school or lower secondary school
## 1890 Upper secondary education (matriculation examination)
## 1891 Upper secondary education (matriculation examination)
## 1892 Primary school or lower secondary school
## 1893 Upper secondary education (matriculation examination)
## 1894 Primary school or lower secondary school
## 1895 Upper secondary education (matriculation examination)
## 1896 Primary school or lower secondary school
## 1897 Upper secondary education (matriculation examination)
## 1898 Upper secondary education (matriculation examination)
## 1899 Upper secondary education (matriculation examination)
## 1900 Upper secondary education (matriculation examination)
## 1901 Upper secondary education (matriculation examination)
## 1902 Upper secondary education (matriculation examination)
## 1903 Upper secondary education (matriculation examination)
## 1904 Primary school or lower secondary school
## 1905 Primary school or lower secondary school
## 1906 Upper secondary education (matriculation examination)
## 1907 Primary school or lower secondary school
## 1908 Upper secondary education (matriculation examination)
## 1909 Upper secondary education (matriculation examination)
## 1910 Primary school or lower secondary school
## 1911 Primary school or lower secondary school
## 1912 Primary school or lower secondary school
## 1913 Upper secondary education (matriculation examination)
## 1914 Primary school or lower secondary school
## 1915 Upper secondary education (matriculation examination)
## 1916 Primary school or lower secondary school
## 1917 Primary school or lower secondary school
## 1918 Primary school or lower secondary school
## 1919 Upper secondary education (matriculation examination)
## 1920 Primary school or lower secondary school
## 1921 Upper secondary education (matriculation examination)
## 1922 Upper secondary education (matriculation examination)
## 1923 Primary school or lower secondary school
## 1924 Upper secondary education (matriculation examination)
## 1925 Upper secondary education (matriculation examination)
## 1926 Upper secondary education (matriculation examination)
## 1927 Upper secondary education (matriculation examination)
## 1928 Upper secondary education (matriculation examination)
## 1929 Upper secondary education (matriculation examination)
## 1930 Primary school or lower secondary school
## 1931 Upper secondary education (matriculation examination)
## 1932 Primary school or lower secondary school
## 1933 Primary school or lower secondary school
## 1934 Primary school or lower secondary school
## 1935 Upper secondary education (matriculation examination)
## 1936 Primary school or lower secondary school
## 1937 Primary school or lower secondary school
## 1938 Primary school or lower secondary school
## education_prof
## 1 University degree (Bachelor's or Master's)
## 2 University of applied sciences degree (Bachelor's)
## 3 University degree (Bachelor's or Master's)
## 4 Vocational school (upper secondary level)
## 5 College level vocational education (post-secondary non-tertiary)
## 6 University degree (Bachelor's or Master's)
## 7 Vocational school (upper secondary level)
## 8 University degree (Bachelor's or Master's)
## 9 College level vocational education (post-secondary non-tertiary)
## 10 Vocational course, other short vocational training
## 11 Vocational school (upper secondary level)
## 12 College level vocational education (post-secondary non-tertiary)
## 13 Vocational course, other short vocational training
## 14 University degree (Bachelor's or Master's)
## 15 Vocational school (upper secondary level)
## 16 University of applied sciences degree (Bachelor's)
## 17 Vocational course, other short vocational training
## 18 No vocational education
## 19 Vocational school (upper secondary level)
## 20 Vocational school (upper secondary level)
## 21 University degree (Bachelor's or Master's)
## 22 University degree (Bachelor's or Master's)
## 23 University degree (Bachelor's or Master's)
## 24 University of applied sciences degree (Bachelor's)
## 25 University degree (Bachelor's or Master's)
## 26 Vocational school (upper secondary level)
## 27 University of applied sciences degree (Bachelor's)
## 28 Vocational school (upper secondary level)
## 29 University degree (Bachelor's or Master's)
## 30 University of applied sciences degree (Bachelor's)
## 31 University degree (Bachelor's or Master's)
## 32 University degree (Bachelor's or Master's)
## 33 Vocational school (upper secondary level)
## 34 University degree (Bachelor's or Master's)
## 35 No vocational education
## 36 Vocational course, other short vocational training
## 37 Vocational school (upper secondary level)
## 38 Vocational course, other short vocational training
## 39 University of applied sciences degree (Bachelor's)
## 40 Vocational course, other short vocational training
## 41 University degree (Bachelor's or Master's)
## 42 Vocational school (upper secondary level)
## 43 Vocational school (upper secondary level)
## 44 Vocational school (upper secondary level)
## 45 No vocational education
## 46 Vocational school (upper secondary level)
## 47 University degree (Bachelor's or Master's)
## 48 College level vocational education (post-secondary non-tertiary)
## 49 Vocational school (upper secondary level)
## 50 College level vocational education (post-secondary non-tertiary)
## 51 Vocational school (upper secondary level)
## 52 College level vocational education (post-secondary non-tertiary)
## 53 University of applied sciences degree (Bachelor's)
## 54 Vocational course, other short vocational training
## 55 Vocational school (upper secondary level)
## 56 College level vocational education (post-secondary non-tertiary)
## 57 University degree (Bachelor's or Master's)
## 58 College level vocational education (post-secondary non-tertiary)
## 59 Vocational school (upper secondary level)
## 60 University degree (Bachelor's or Master's)
## 61 University degree (Bachelor's or Master's)
## 62 University degree (Bachelor's or Master's)
## 63 University degree (Bachelor's or Master's)
## 64 Vocational school (upper secondary level)
## 65 College level vocational education (post-secondary non-tertiary)
## 66 Vocational school (upper secondary level)
## 67 University degree (Bachelor's or Master's)
## 68 College level vocational education (post-secondary non-tertiary)
## 69 University degree (Bachelor's or Master's)
## 70 College level vocational education (post-secondary non-tertiary)
## 71 Vocational course, other short vocational training
## 72 Vocational school (upper secondary level)
## 73 College level vocational education (post-secondary non-tertiary)
## 74 University of applied sciences degree (Bachelor's)
## 75 University of applied sciences degree (Bachelor's)
## 76 College level vocational education (post-secondary non-tertiary)
## 77 No vocational education
## 78 University degree (Bachelor's or Master's)
## 79 Vocational school (upper secondary level)
## 80 Vocational course, other short vocational training
## 81 No vocational education
## 82 University of applied sciences degree (Bachelor's)
## 83 University of applied sciences degree (Bachelor's)
## 84 University degree (Bachelor's or Master's)
## 85 University degree (Bachelor's or Master's)
## 86 Vocational school (upper secondary level)
## 87 Vocational school (upper secondary level)
## 88 College level vocational education (post-secondary non-tertiary)
## 89 University of applied sciences degree (Bachelor's)
## 90 No vocational education
## 91 College level vocational education (post-secondary non-tertiary)
## 92 University degree (Bachelor's or Master's)
## 93 College level vocational education (post-secondary non-tertiary)
## 94 University of applied sciences degree (Bachelor's)
## 95 University degree (Bachelor's or Master's)
## 96 University of applied sciences degree (Bachelor's)
## 97 University degree (Bachelor's or Master's)
## 98 Vocational school (upper secondary level)
## 99 Vocational school (upper secondary level)
## 100 University degree (Bachelor's or Master's)
## 101 Vocational school (upper secondary level)
## 102 University of applied sciences degree (Bachelor's)
## 103 College level vocational education (post-secondary non-tertiary)
## 104 College level vocational education (post-secondary non-tertiary)
## 105 College level vocational education (post-secondary non-tertiary)
## 106 University of applied sciences degree (Bachelor's)
## 107 University degree (Bachelor's or Master's)
## 108 College level vocational education (post-secondary non-tertiary)
## 109 Vocational course, other short vocational training
## 110 Vocational school (upper secondary level)
## 111 University degree (Bachelor's or Master's)
## 112 Vocational school (upper secondary level)
## 113 University degree (Bachelor's or Master's)
## 114 University degree (Bachelor's or Master's)
## 115 University degree (Bachelor's or Master's)
## 116 Vocational school (upper secondary level)
## 117 College level vocational education (post-secondary non-tertiary)
## 118 University of applied sciences degree (Bachelor's)
## 119 College level vocational education (post-secondary non-tertiary)
## 120 Vocational school (upper secondary level)
## 121 University of applied sciences degree (Bachelor's)
## 122 College level vocational education (post-secondary non-tertiary)
## 123 University degree (Bachelor's or Master's)
## 124 No vocational education
## 125 University degree (Bachelor's or Master's)
## 126 Vocational course, other short vocational training
## 127 University of applied sciences degree (Bachelor's)
## 128 University degree (Bachelor's or Master's)
## 129 Vocational school (upper secondary level)
## 130 College level vocational education (post-secondary non-tertiary)
## 131 Vocational school (upper secondary level)
## 132 University of applied sciences degree (Bachelor's)
## 133 University degree (Bachelor's or Master's)
## 134 No vocational education
## 135 College level vocational education (post-secondary non-tertiary)
## 136 University of applied sciences degree (Bachelor's)
## 137 Vocational school (upper secondary level)
## 138 College level vocational education (post-secondary non-tertiary)
## 139 Vocational school (upper secondary level)
## 140 No vocational education
## 141 University of applied sciences degree (Bachelor's)
## 142 No vocational education
## 143 College level vocational education (post-secondary non-tertiary)
## 144 Vocational course, other short vocational training
## 145 Vocational course, other short vocational training
## 146 Vocational school (upper secondary level)
## 147 No vocational education
## 148 Vocational course, other short vocational training
## 149 College level vocational education (post-secondary non-tertiary)
## 150 University degree (Bachelor's or Master's)
## 151 Vocational school (upper secondary level)
## 152 University degree (Bachelor's or Master's)
## 153 Vocational school (upper secondary level)
## 154 Vocational school (upper secondary level)
## 155 Vocational school (upper secondary level)
## 156 Vocational school (upper secondary level)
## 157 University of applied sciences degree (Bachelor's)
## 158 Vocational school (upper secondary level)
## 159 University of applied sciences degree (Bachelor's)
## 160 Vocational school (upper secondary level)
## 161 No vocational education
## 162 University degree (Bachelor's or Master's)
## 163 University degree (Bachelor's or Master's)
## 164 University degree (Bachelor's or Master's)
## 165 Vocational school (upper secondary level)
## 166 College level vocational education (post-secondary non-tertiary)
## 167 University degree (Bachelor's or Master's)
## 168 University degree (Bachelor's or Master's)
## 169 University of applied sciences degree (Bachelor's)
## 170 University degree (Bachelor's or Master's)
## 171 Vocational school (upper secondary level)
## 172 University degree (Bachelor's or Master's)
## 173 Vocational course, other short vocational training
## 174 College level vocational education (post-secondary non-tertiary)
## 175 Vocational course, other short vocational training
## 176 University degree (Bachelor's or Master's)
## 177 Vocational school (upper secondary level)
## 178 University degree (Bachelor's or Master's)
## 179 College level vocational education (post-secondary non-tertiary)
## 180 Vocational school (upper secondary level)
## 181 Vocational school (upper secondary level)
## 182 College level vocational education (post-secondary non-tertiary)
## 183 Vocational school (upper secondary level)
## 184 Vocational school (upper secondary level)
## 185 College level vocational education (post-secondary non-tertiary)
## 186 College level vocational education (post-secondary non-tertiary)
## 187 College level vocational education (post-secondary non-tertiary)
## 188 University degree (Bachelor's or Master's)
## 189 University of applied sciences degree (Bachelor's)
## 190 College level vocational education (post-secondary non-tertiary)
## 191 College level vocational education (post-secondary non-tertiary)
## 192 Vocational school (upper secondary level)
## 193 College level vocational education (post-secondary non-tertiary)
## 194 Vocational school (upper secondary level)
## 195 Vocational school (upper secondary level)
## 196 Vocational school (upper secondary level)
## 197 Vocational course, other short vocational training
## 198 Vocational school (upper secondary level)
## 199 Vocational school (upper secondary level)
## 200 College level vocational education (post-secondary non-tertiary)
## 201 College level vocational education (post-secondary non-tertiary)
## 202 Vocational school (upper secondary level)
## 203 University degree (Bachelor's or Master's)
## 204 University degree (Bachelor's or Master's)
## 205 Vocational school (upper secondary level)
## 206 University degree (Bachelor's or Master's)
## 207 University of applied sciences degree (Bachelor's)
## 208 University degree (Bachelor's or Master's)
## 209 College level vocational education (post-secondary non-tertiary)
## 210 University degree (Bachelor's or Master's)
## 211 College level vocational education (post-secondary non-tertiary)
## 212 University degree (Bachelor's or Master's)
## 213 University degree (Bachelor's or Master's)
## 214 College level vocational education (post-secondary non-tertiary)
## 215 University degree (Bachelor's or Master's)
## 216 Vocational course, other short vocational training
## 217 University degree (Bachelor's or Master's)
## 218 University degree (Bachelor's or Master's)
## 219 University of applied sciences degree (Bachelor's)
## 220 Vocational school (upper secondary level)
## 221 University degree (Bachelor's or Master's)
## 222 Vocational school (upper secondary level)
## 223 Vocational school (upper secondary level)
## 224 Vocational course, other short vocational training
## 225 Vocational school (upper secondary level)
## 226 University degree (Bachelor's or Master's)
## 227 College level vocational education (post-secondary non-tertiary)
## 228 Vocational school (upper secondary level)
## 229 College level vocational education (post-secondary non-tertiary)
## 230 University degree (Bachelor's or Master's)
## 231 University of applied sciences degree (Bachelor's)
## 232 Vocational school (upper secondary level)
## 233 Vocational course, other short vocational training
## 234 Vocational school (upper secondary level)
## 235 Vocational school (upper secondary level)
## 236 University degree (Bachelor's or Master's)
## 237 University degree (Bachelor's or Master's)
## 238 University of applied sciences degree (Bachelor's)
## 239 College level vocational education (post-secondary non-tertiary)
## 240 University degree (Bachelor's or Master's)
## 241 Vocational course, other short vocational training
## 242 University degree (Bachelor's or Master's)
## 243 College level vocational education (post-secondary non-tertiary)
## 244 University degree (Bachelor's or Master's)
## 245 No vocational education
## 246 University degree (Bachelor's or Master's)
## 247 College level vocational education (post-secondary non-tertiary)
## 248 College level vocational education (post-secondary non-tertiary)
## 249 Vocational school (upper secondary level)
## 250 Vocational school (upper secondary level)
## 251 Vocational school (upper secondary level)
## 252 University degree (Bachelor's or Master's)
## 253 University of applied sciences degree (Bachelor's)
## 254 College level vocational education (post-secondary non-tertiary)
## 255 University of applied sciences degree (Bachelor's)
## 256 College level vocational education (post-secondary non-tertiary)
## 257 University degree (Bachelor's or Master's)
## 258 Vocational school (upper secondary level)
## 259 Vocational school (upper secondary level)
## 260 Vocational school (upper secondary level)
## 261 University degree (Bachelor's or Master's)
## 262 University degree (Bachelor's or Master's)
## 263 No vocational education
## 264 Vocational school (upper secondary level)
## 265 Vocational school (upper secondary level)
## 266 Vocational school (upper secondary level)
## 267 College level vocational education (post-secondary non-tertiary)
## 268 Vocational school (upper secondary level)
## 269 Vocational school (upper secondary level)
## 270 Vocational school (upper secondary level)
## 271 Vocational school (upper secondary level)
## 272 University degree (Bachelor's or Master's)
## 273 University degree (Bachelor's or Master's)
## 274 College level vocational education (post-secondary non-tertiary)
## 275 No vocational education
## 276 College level vocational education (post-secondary non-tertiary)
## 277 College level vocational education (post-secondary non-tertiary)
## 278 College level vocational education (post-secondary non-tertiary)
## 279 University degree (Bachelor's or Master's)
## 280 Vocational school (upper secondary level)
## 281 University of applied sciences degree (Bachelor's)
## 282 Vocational school (upper secondary level)
## 283 Vocational course, other short vocational training
## 284 Vocational school (upper secondary level)
## 285 Vocational school (upper secondary level)
## 286 Vocational school (upper secondary level)
## 287 College level vocational education (post-secondary non-tertiary)
## 288 No vocational education
## 289 Vocational school (upper secondary level)
## 290 Vocational school (upper secondary level)
## 291 College level vocational education (post-secondary non-tertiary)
## 292 Vocational school (upper secondary level)
## 293 College level vocational education (post-secondary non-tertiary)
## 294 No vocational education
## 295 University degree (Bachelor's or Master's)
## 296 University degree (Bachelor's or Master's)
## 297 College level vocational education (post-secondary non-tertiary)
## 298 Vocational school (upper secondary level)
## 299 College level vocational education (post-secondary non-tertiary)
## 300 University degree (Bachelor's or Master's)
## 301 College level vocational education (post-secondary non-tertiary)
## 302 University degree (Bachelor's or Master's)
## 303 College level vocational education (post-secondary non-tertiary)
## 304 College level vocational education (post-secondary non-tertiary)
## 305 College level vocational education (post-secondary non-tertiary)
## 306 Vocational school (upper secondary level)
## 307 University of applied sciences degree (Bachelor's)
## 308 No vocational education
## 309 Vocational school (upper secondary level)
## 310 Vocational school (upper secondary level)
## 311 Vocational school (upper secondary level)
## 312 University degree (Bachelor's or Master's)
## 313 Vocational course, other short vocational training
## 314 Vocational school (upper secondary level)
## 315 No vocational education
## 316 College level vocational education (post-secondary non-tertiary)
## 317 University degree (Bachelor's or Master's)
## 318 Vocational course, other short vocational training
## 319 Vocational school (upper secondary level)
## 320 Vocational school (upper secondary level)
## 321 College level vocational education (post-secondary non-tertiary)
## 322 College level vocational education (post-secondary non-tertiary)
## 323 University of applied sciences degree (Bachelor's)
## 324 University degree (Bachelor's or Master's)
## 325 No vocational education
## 326 Vocational school (upper secondary level)
## 327 Vocational school (upper secondary level)
## 328 College level vocational education (post-secondary non-tertiary)
## 329 College level vocational education (post-secondary non-tertiary)
## 330 Vocational school (upper secondary level)
## 331 Vocational school (upper secondary level)
## 332 College level vocational education (post-secondary non-tertiary)
## 333 University of applied sciences degree (Bachelor's)
## 334 No vocational education
## 335 Vocational course, other short vocational training
## 336 University degree (Bachelor's or Master's)
## 337 College level vocational education (post-secondary non-tertiary)
## 338 No vocational education
## 339 Vocational school (upper secondary level)
## 340 Vocational school (upper secondary level)
## 341 Vocational school (upper secondary level)
## 342 University of applied sciences degree (Bachelor's)
## 343 Vocational course, other short vocational training
## 344 Vocational school (upper secondary level)
## 345 No vocational education
## 346 No vocational education
## 347 Vocational course, other short vocational training
## 348 University degree (Bachelor's or Master's)
## 349 Vocational school (upper secondary level)
## 350 College level vocational education (post-secondary non-tertiary)
## 351 University of applied sciences degree (Bachelor's)
## 352 Vocational school (upper secondary level)
## 353 Vocational school (upper secondary level)
## 354 University of applied sciences degree (Bachelor's)
## 355 Vocational school (upper secondary level)
## 356 College level vocational education (post-secondary non-tertiary)
## 357 University degree (Bachelor's or Master's)
## 358 University degree (Bachelor's or Master's)
## 359 Vocational course, other short vocational training
## 360 University of applied sciences degree (Bachelor's)
## 361 University degree (Bachelor's or Master's)
## 362 Vocational course, other short vocational training
## 363 College level vocational education (post-secondary non-tertiary)
## 364 College level vocational education (post-secondary non-tertiary)
## 365 Vocational school (upper secondary level)
## 366 College level vocational education (post-secondary non-tertiary)
## 367 Vocational course, other short vocational training
## 368 College level vocational education (post-secondary non-tertiary)
## 369 University of applied sciences degree (Bachelor's)
## 370 University of applied sciences degree (Bachelor's)
## 371 University degree (Bachelor's or Master's)
## 372 College level vocational education (post-secondary non-tertiary)
## 373 College level vocational education (post-secondary non-tertiary)
## 374 University degree (Bachelor's or Master's)
## 375 College level vocational education (post-secondary non-tertiary)
## 376 Vocational school (upper secondary level)
## 377 Vocational school (upper secondary level)
## 378 University degree (Bachelor's or Master's)
## 379 Vocational school (upper secondary level)
## 380 University degree (Bachelor's or Master's)
## 381 Vocational school (upper secondary level)
## 382 University degree (Bachelor's or Master's)
## 383 University degree (Bachelor's or Master's)
## 384 Vocational course, other short vocational training
## 385 Vocational school (upper secondary level)
## 386 Vocational school (upper secondary level)
## 387 University degree (Bachelor's or Master's)
## 388 College level vocational education (post-secondary non-tertiary)
## 389 University degree (Bachelor's or Master's)
## 390 Vocational course, other short vocational training
## 391 University degree (Bachelor's or Master's)
## 392 Vocational course, other short vocational training
## 393 College level vocational education (post-secondary non-tertiary)
## 394 University of applied sciences degree (Bachelor's)
## 395 Vocational school (upper secondary level)
## 396 No vocational education
## 397 No vocational education
## 398 University degree (Bachelor's or Master's)
## 399 College level vocational education (post-secondary non-tertiary)
## 400 Vocational school (upper secondary level)
## 401 Vocational school (upper secondary level)
## 402 University degree (Bachelor's or Master's)
## 403 Vocational school (upper secondary level)
## 404 College level vocational education (post-secondary non-tertiary)
## 405 University degree (Bachelor's or Master's)
## 406 College level vocational education (post-secondary non-tertiary)
## 407 No vocational education
## 408 University degree (Bachelor's or Master's)
## 409 No vocational education
## 410 University of applied sciences degree (Bachelor's)
## 411 Vocational course, other short vocational training
## 412 University degree (Bachelor's or Master's)
## 413 University of applied sciences degree (Bachelor's)
## 414 Vocational school (upper secondary level)
## 415 University degree (Bachelor's or Master's)
## 416 Vocational school (upper secondary level)
## 417 University of applied sciences degree (Bachelor's)
## 418 University degree (Bachelor's or Master's)
## 419 Vocational school (upper secondary level)
## 420 University degree (Bachelor's or Master's)
## 421 Vocational school (upper secondary level)
## 422 University degree (Bachelor's or Master's)
## 423 Vocational course, other short vocational training
## 424 College level vocational education (post-secondary non-tertiary)
## 425 University degree (Bachelor's or Master's)
## 426 Vocational course, other short vocational training
## 427 University degree (Bachelor's or Master's)
## 428 College level vocational education (post-secondary non-tertiary)
## 429 University degree (Bachelor's or Master's)
## 430 Vocational course, other short vocational training
## 431 College level vocational education (post-secondary non-tertiary)
## 432 University degree (Bachelor's or Master's)
## 433 University degree (Bachelor's or Master's)
## 434 University of applied sciences degree (Bachelor's)
## 435 University degree (Bachelor's or Master's)
## 436 Vocational school (upper secondary level)
## 437 University degree (Bachelor's or Master's)
## 438 Vocational school (upper secondary level)
## 439 University degree (Bachelor's or Master's)
## 440 College level vocational education (post-secondary non-tertiary)
## 441 College level vocational education (post-secondary non-tertiary)
## 442 Vocational course, other short vocational training
## 443 No vocational education
## 444 College level vocational education (post-secondary non-tertiary)
## 445 University degree (Bachelor's or Master's)
## 446 Vocational school (upper secondary level)
## 447 University of applied sciences degree (Bachelor's)
## 448 College level vocational education (post-secondary non-tertiary)
## 449 University degree (Bachelor's or Master's)
## 450 University degree (Bachelor's or Master's)
## 451 Vocational school (upper secondary level)
## 452 Vocational course, other short vocational training
## 453 University of applied sciences degree (Bachelor's)
## 454 Vocational school (upper secondary level)
## 455 Vocational school (upper secondary level)
## 456 University of applied sciences degree (Bachelor's)
## 457 College level vocational education (post-secondary non-tertiary)
## 458 University degree (Bachelor's or Master's)
## 459 College level vocational education (post-secondary non-tertiary)
## 460 University degree (Bachelor's or Master's)
## 461 College level vocational education (post-secondary non-tertiary)
## 462 University of applied sciences degree (Bachelor's)
## 463 No vocational education
## 464 University of applied sciences degree (Bachelor's)
## 465 Vocational school (upper secondary level)
## 466 Vocational school (upper secondary level)
## 467 College level vocational education (post-secondary non-tertiary)
## 468 Vocational school (upper secondary level)
## 469 University of applied sciences degree (Bachelor's)
## 470 Vocational course, other short vocational training
## 471 Vocational school (upper secondary level)
## 472 University of applied sciences degree (Bachelor's)
## 473 University of applied sciences degree (Bachelor's)
## 474 College level vocational education (post-secondary non-tertiary)
## 475 Vocational school (upper secondary level)
## 476 University degree (Bachelor's or Master's)
## 477 Vocational school (upper secondary level)
## 478 University degree (Bachelor's or Master's)
## 479 Vocational course, other short vocational training
## 480 University of applied sciences degree (Bachelor's)
## 481 Vocational school (upper secondary level)
## 482 University degree (Bachelor's or Master's)
## 483 Vocational course, other short vocational training
## 484 University degree (Bachelor's or Master's)
## 485 University of applied sciences degree (Bachelor's)
## 486 University of applied sciences degree (Bachelor's)
## 487 Vocational school (upper secondary level)
## 488 College level vocational education (post-secondary non-tertiary)
## 489 College level vocational education (post-secondary non-tertiary)
## 490 University degree (Bachelor's or Master's)
## 491 University degree (Bachelor's or Master's)
## 492 University degree (Bachelor's or Master's)
## 493 College level vocational education (post-secondary non-tertiary)
## 494 Vocational school (upper secondary level)
## 495 Vocational school (upper secondary level)
## 496 No vocational education
## 497 Vocational course, other short vocational training
## 498 Vocational school (upper secondary level)
## 499 University degree (Bachelor's or Master's)
## 500 University degree (Bachelor's or Master's)
## 501 Vocational school (upper secondary level)
## 502 College level vocational education (post-secondary non-tertiary)
## 503 No vocational education
## 504 Vocational course, other short vocational training
## 505 Vocational school (upper secondary level)
## 506 No vocational education
## 507 University of applied sciences degree (Bachelor's)
## 508 University degree (Bachelor's or Master's)
## 509 Vocational school (upper secondary level)
## 510 College level vocational education (post-secondary non-tertiary)
## 511 University degree (Bachelor's or Master's)
## 512 Vocational school (upper secondary level)
## 513 Vocational school (upper secondary level)
## 514 Vocational school (upper secondary level)
## 515 College level vocational education (post-secondary non-tertiary)
## 516 No vocational education
## 517 Vocational course, other short vocational training
## 518 Vocational school (upper secondary level)
## 519 College level vocational education (post-secondary non-tertiary)
## 520 College level vocational education (post-secondary non-tertiary)
## 521 University of applied sciences degree (Bachelor's)
## 522 College level vocational education (post-secondary non-tertiary)
## 523 University degree (Bachelor's or Master's)
## 524 College level vocational education (post-secondary non-tertiary)
## 525 University degree (Bachelor's or Master's)
## 526 University degree (Bachelor's or Master's)
## 527 Vocational course, other short vocational training
## 528 College level vocational education (post-secondary non-tertiary)
## 529 University degree (Bachelor's or Master's)
## 530 College level vocational education (post-secondary non-tertiary)
## 531 Vocational course, other short vocational training
## 532 Vocational course, other short vocational training
## 533 University degree (Bachelor's or Master's)
## 534 College level vocational education (post-secondary non-tertiary)
## 535 College level vocational education (post-secondary non-tertiary)
## 536 Vocational school (upper secondary level)
## 537 College level vocational education (post-secondary non-tertiary)
## 538 Vocational school (upper secondary level)
## 539 Vocational course, other short vocational training
## 540 University of applied sciences degree (Bachelor's)
## 541 Vocational school (upper secondary level)
## 542 University degree (Bachelor's or Master's)
## 543 College level vocational education (post-secondary non-tertiary)
## 544 University of applied sciences degree (Bachelor's)
## 545 University degree (Bachelor's or Master's)
## 546 Vocational school (upper secondary level)
## 547 University degree (Bachelor's or Master's)
## 548 University degree (Bachelor's or Master's)
## 549 University degree (Bachelor's or Master's)
## 550 College level vocational education (post-secondary non-tertiary)
## 551 Vocational school (upper secondary level)
## 552 University degree (Bachelor's or Master's)
## 553 Vocational school (upper secondary level)
## 554 Vocational course, other short vocational training
## 555 Vocational school (upper secondary level)
## 556 University degree (Bachelor's or Master's)
## 557 University of applied sciences degree (Bachelor's)
## 558 University degree (Bachelor's or Master's)
## 559 College level vocational education (post-secondary non-tertiary)
## 560 No vocational education
## 561 College level vocational education (post-secondary non-tertiary)
## 562 Vocational course, other short vocational training
## 563 Vocational school (upper secondary level)
## 564 College level vocational education (post-secondary non-tertiary)
## 565 Vocational school (upper secondary level)
## 566 Vocational school (upper secondary level)
## 567 Vocational school (upper secondary level)
## 568 Vocational school (upper secondary level)
## 569 College level vocational education (post-secondary non-tertiary)
## 570 Vocational school (upper secondary level)
## 571 College level vocational education (post-secondary non-tertiary)
## 572 College level vocational education (post-secondary non-tertiary)
## 573 University degree (Bachelor's or Master's)
## 574 College level vocational education (post-secondary non-tertiary)
## 575 College level vocational education (post-secondary non-tertiary)
## 576 University of applied sciences degree (Bachelor's)
## 577 University degree (Bachelor's or Master's)
## 578 University degree (Bachelor's or Master's)
## 579 Vocational school (upper secondary level)
## 580 College level vocational education (post-secondary non-tertiary)
## 581 Vocational school (upper secondary level)
## 582 Vocational school (upper secondary level)
## 583 University of applied sciences degree (Bachelor's)
## 584 No vocational education
## 585 College level vocational education (post-secondary non-tertiary)
## 586 Vocational course, other short vocational training
## 587 College level vocational education (post-secondary non-tertiary)
## 588 University degree (Bachelor's or Master's)
## 589 College level vocational education (post-secondary non-tertiary)
## 590 College level vocational education (post-secondary non-tertiary)
## 591 Vocational school (upper secondary level)
## 592 College level vocational education (post-secondary non-tertiary)
## 593 College level vocational education (post-secondary non-tertiary)
## 594 Vocational school (upper secondary level)
## 595 College level vocational education (post-secondary non-tertiary)
## 596 College level vocational education (post-secondary non-tertiary)
## 597 Vocational school (upper secondary level)
## 598 Vocational school (upper secondary level)
## 599 Vocational school (upper secondary level)
## 600 Vocational school (upper secondary level)
## 601 Vocational school (upper secondary level)
## 602 Vocational school (upper secondary level)
## 603 Vocational school (upper secondary level)
## 604 No vocational education
## 605 College level vocational education (post-secondary non-tertiary)
## 606 Vocational school (upper secondary level)
## 607 University degree (Bachelor's or Master's)
## 608 No vocational education
## 609 Vocational school (upper secondary level)
## 610 College level vocational education (post-secondary non-tertiary)
## 611 University degree (Bachelor's or Master's)
## 612 No vocational education
## 613 Vocational school (upper secondary level)
## 614 University degree (Bachelor's or Master's)
## 615 University degree (Bachelor's or Master's)
## 616 University degree (Bachelor's or Master's)
## 617 Vocational school (upper secondary level)
## 618 University degree (Bachelor's or Master's)
## 619 College level vocational education (post-secondary non-tertiary)
## 620 University degree (Bachelor's or Master's)
## 621 Vocational course, other short vocational training
## 622 University degree (Bachelor's or Master's)
## 623 University of applied sciences degree (Bachelor's)
## 624 University degree (Bachelor's or Master's)
## 625 University degree (Bachelor's or Master's)
## 626 Vocational school (upper secondary level)
## 627 College level vocational education (post-secondary non-tertiary)
## 628 College level vocational education (post-secondary non-tertiary)
## 629 No vocational education
## 630 Vocational school (upper secondary level)
## 631 College level vocational education (post-secondary non-tertiary)
## 632 Vocational school (upper secondary level)
## 633 University degree (Bachelor's or Master's)
## 634 University of applied sciences degree (Bachelor's)
## 635 University of applied sciences degree (Bachelor's)
## 636 Vocational school (upper secondary level)
## 637 Vocational school (upper secondary level)
## 638 University degree (Bachelor's or Master's)
## 639 College level vocational education (post-secondary non-tertiary)
## 640 College level vocational education (post-secondary non-tertiary)
## 641 University degree (Bachelor's or Master's)
## 642 University degree (Bachelor's or Master's)
## 643 University degree (Bachelor's or Master's)
## 644 University degree (Bachelor's or Master's)
## 645 Vocational school (upper secondary level)
## 646 Vocational school (upper secondary level)
## 647 Vocational school (upper secondary level)
## 648 University of applied sciences degree (Bachelor's)
## 649 Vocational school (upper secondary level)
## 650 University of applied sciences degree (Bachelor's)
## 651 Vocational school (upper secondary level)
## 652 Vocational school (upper secondary level)
## 653 University degree (Bachelor's or Master's)
## 654 University degree (Bachelor's or Master's)
## 655 Vocational school (upper secondary level)
## 656 College level vocational education (post-secondary non-tertiary)
## 657 University of applied sciences degree (Bachelor's)
## 658 University degree (Bachelor's or Master's)
## 659 No vocational education
## 660 University degree (Bachelor's or Master's)
## 661 Vocational school (upper secondary level)
## 662 University degree (Bachelor's or Master's)
## 663 No vocational education
## 664 University degree (Bachelor's or Master's)
## 665 College level vocational education (post-secondary non-tertiary)
## 666 Vocational course, other short vocational training
## 667 Vocational school (upper secondary level)
## 668 No vocational education
## 669 University of applied sciences degree (Bachelor's)
## 670 College level vocational education (post-secondary non-tertiary)
## 671 University degree (Bachelor's or Master's)
## 672 University degree (Bachelor's or Master's)
## 673 College level vocational education (post-secondary non-tertiary)
## 674 University degree (Bachelor's or Master's)
## 675 Vocational course, other short vocational training
## 676 Vocational school (upper secondary level)
## 677 University degree (Bachelor's or Master's)
## 678 University of applied sciences degree (Bachelor's)
## 679 College level vocational education (post-secondary non-tertiary)
## 680 Vocational school (upper secondary level)
## 681 No vocational education
## 682 University degree (Bachelor's or Master's)
## 683 No vocational education
## 684 Vocational school (upper secondary level)
## 685 University of applied sciences degree (Bachelor's)
## 686 Vocational school (upper secondary level)
## 687 University of applied sciences degree (Bachelor's)
## 688 University degree (Bachelor's or Master's)
## 689 University degree (Bachelor's or Master's)
## 690 Vocational school (upper secondary level)
## 691 University degree (Bachelor's or Master's)
## 692 Vocational school (upper secondary level)
## 693 Vocational school (upper secondary level)
## 694 College level vocational education (post-secondary non-tertiary)
## 695 No vocational education
## 696 University degree (Bachelor's or Master's)
## 697 Vocational school (upper secondary level)
## 698 College level vocational education (post-secondary non-tertiary)
## 699 College level vocational education (post-secondary non-tertiary)
## 700 Vocational school (upper secondary level)
## 701 Vocational school (upper secondary level)
## 702 Vocational school (upper secondary level)
## 703 College level vocational education (post-secondary non-tertiary)
## 704 University degree (Bachelor's or Master's)
## 705 Vocational school (upper secondary level)
## 706 University degree (Bachelor's or Master's)
## 707 University degree (Bachelor's or Master's)
## 708 University degree (Bachelor's or Master's)
## 709 Vocational school (upper secondary level)
## 710 University of applied sciences degree (Bachelor's)
## 711 College level vocational education (post-secondary non-tertiary)
## 712 University of applied sciences degree (Bachelor's)
## 713 Vocational course, other short vocational training
## 714 No vocational education
## 715 University of applied sciences degree (Bachelor's)
## 716 Vocational school (upper secondary level)
## 717 Vocational school (upper secondary level)
## 718 Vocational school (upper secondary level)
## 719 Vocational school (upper secondary level)
## 720 University degree (Bachelor's or Master's)
## 721 Vocational school (upper secondary level)
## 722 Vocational school (upper secondary level)
## 723 Vocational school (upper secondary level)
## 724 College level vocational education (post-secondary non-tertiary)
## 725 No vocational education
## 726 Vocational school (upper secondary level)
## 727 University of applied sciences degree (Bachelor's)
## 728 University of applied sciences degree (Bachelor's)
## 729 No vocational education
## 730 University of applied sciences degree (Bachelor's)
## 731 College level vocational education (post-secondary non-tertiary)
## 732 College level vocational education (post-secondary non-tertiary)
## 733 No vocational education
## 734 Vocational school (upper secondary level)
## 735 Vocational school (upper secondary level)
## 736 Vocational school (upper secondary level)
## 737 University degree (Bachelor's or Master's)
## 738 Vocational school (upper secondary level)
## 739 Vocational school (upper secondary level)
## 740 College level vocational education (post-secondary non-tertiary)
## 741 College level vocational education (post-secondary non-tertiary)
## 742 University of applied sciences degree (Bachelor's)
## 743 Vocational course, other short vocational training
## 744 University degree (Bachelor's or Master's)
## 745 University degree (Bachelor's or Master's)
## 746 University degree (Bachelor's or Master's)
## 747 University degree (Bachelor's or Master's)
## 748 University degree (Bachelor's or Master's)
## 749 Vocational course, other short vocational training
## 750 College level vocational education (post-secondary non-tertiary)
## 751 No vocational education
## 752 Vocational course, other short vocational training
## 753 University degree (Bachelor's or Master's)
## 754 Vocational school (upper secondary level)
## 755 College level vocational education (post-secondary non-tertiary)
## 756 Vocational school (upper secondary level)
## 757 University of applied sciences degree (Bachelor's)
## 758 College level vocational education (post-secondary non-tertiary)
## 759 College level vocational education (post-secondary non-tertiary)
## 760 Vocational course, other short vocational training
## 761 College level vocational education (post-secondary non-tertiary)
## 762 Vocational school (upper secondary level)
## 763 University of applied sciences degree (Bachelor's)
## 764 University of applied sciences degree (Bachelor's)
## 765 College level vocational education (post-secondary non-tertiary)
## 766 Vocational school (upper secondary level)
## 767 University of applied sciences degree (Bachelor's)
## 768 Vocational school (upper secondary level)
## 769 No vocational education
## 770 Vocational school (upper secondary level)
## 771 Vocational school (upper secondary level)
## 772 University degree (Bachelor's or Master's)
## 773 University degree (Bachelor's or Master's)
## 774 Vocational school (upper secondary level)
## 775 University degree (Bachelor's or Master's)
## 776 College level vocational education (post-secondary non-tertiary)
## 777 College level vocational education (post-secondary non-tertiary)
## 778 University degree (Bachelor's or Master's)
## 779 University degree (Bachelor's or Master's)
## 780 University degree (Bachelor's or Master's)
## 781 Vocational school (upper secondary level)
## 782 University degree (Bachelor's or Master's)
## 783 Vocational school (upper secondary level)
## 784 Vocational course, other short vocational training
## 785 College level vocational education (post-secondary non-tertiary)
## 786 No vocational education
## 787 Vocational course, other short vocational training
## 788 University of applied sciences degree (Bachelor's)
## 789 College level vocational education (post-secondary non-tertiary)
## 790 University degree (Bachelor's or Master's)
## 791 College level vocational education (post-secondary non-tertiary)
## 792 University of applied sciences degree (Bachelor's)
## 793 Vocational school (upper secondary level)
## 794 College level vocational education (post-secondary non-tertiary)
## 795 No vocational education
## 796 Vocational school (upper secondary level)
## 797 University of applied sciences degree (Bachelor's)
## 798 Vocational school (upper secondary level)
## 799 University degree (Bachelor's or Master's)
## 800 Vocational school (upper secondary level)
## 801 College level vocational education (post-secondary non-tertiary)
## 802 College level vocational education (post-secondary non-tertiary)
## 803 Vocational school (upper secondary level)
## 804 Vocational course, other short vocational training
## 805 Vocational school (upper secondary level)
## 806 University degree (Bachelor's or Master's)
## 807 University degree (Bachelor's or Master's)
## 808 Vocational school (upper secondary level)
## 809 University degree (Bachelor's or Master's)
## 810 No vocational education
## 811 University of applied sciences degree (Bachelor's)
## 812 University degree (Bachelor's or Master's)
## 813 College level vocational education (post-secondary non-tertiary)
## 814 College level vocational education (post-secondary non-tertiary)
## 815 Vocational school (upper secondary level)
## 816 University degree (Bachelor's or Master's)
## 817 College level vocational education (post-secondary non-tertiary)
## 818 Vocational school (upper secondary level)
## 819 College level vocational education (post-secondary non-tertiary)
## 820 Vocational school (upper secondary level)
## 821 University degree (Bachelor's or Master's)
## 822 Vocational course, other short vocational training
## 823 No vocational education
## 824 University degree (Bachelor's or Master's)
## 825 University degree (Bachelor's or Master's)
## 826 University of applied sciences degree (Bachelor's)
## 827 College level vocational education (post-secondary non-tertiary)
## 828 Vocational school (upper secondary level)
## 829 Vocational course, other short vocational training
## 830 College level vocational education (post-secondary non-tertiary)
## 831 College level vocational education (post-secondary non-tertiary)
## 832 University degree (Bachelor's or Master's)
## 833 University degree (Bachelor's or Master's)
## 834 Vocational course, other short vocational training
## 835 College level vocational education (post-secondary non-tertiary)
## 836 University degree (Bachelor's or Master's)
## 837 College level vocational education (post-secondary non-tertiary)
## 838 No vocational education
## 839 University degree (Bachelor's or Master's)
## 840 Vocational school (upper secondary level)
## 841 University degree (Bachelor's or Master's)
## 842 University of applied sciences degree (Bachelor's)
## 843 Vocational school (upper secondary level)
## 844 University of applied sciences degree (Bachelor's)
## 845 University degree (Bachelor's or Master's)
## 846 No vocational education
## 847 Vocational school (upper secondary level)
## 848 Vocational school (upper secondary level)
## 849 Vocational school (upper secondary level)
## 850 Vocational school (upper secondary level)
## 851 University of applied sciences degree (Bachelor's)
## 852 College level vocational education (post-secondary non-tertiary)
## 853 Vocational school (upper secondary level)
## 854 University degree (Bachelor's or Master's)
## 855 University degree (Bachelor's or Master's)
## 856 Vocational course, other short vocational training
## 857 University degree (Bachelor's or Master's)
## 858 University of applied sciences degree (Bachelor's)
## 859 University degree (Bachelor's or Master's)
## 860 University degree (Bachelor's or Master's)
## 861 College level vocational education (post-secondary non-tertiary)
## 862 University degree (Bachelor's or Master's)
## 863 University degree (Bachelor's or Master's)
## 864 College level vocational education (post-secondary non-tertiary)
## 865 Vocational course, other short vocational training
## 866 University degree (Bachelor's or Master's)
## 867 Vocational school (upper secondary level)
## 868 University degree (Bachelor's or Master's)
## 869 University degree (Bachelor's or Master's)
## 870 College level vocational education (post-secondary non-tertiary)
## 871 College level vocational education (post-secondary non-tertiary)
## 872 College level vocational education (post-secondary non-tertiary)
## 873 Vocational school (upper secondary level)
## 874 College level vocational education (post-secondary non-tertiary)
## 875 University degree (Bachelor's or Master's)
## 876 University degree (Bachelor's or Master's)
## 877 University degree (Bachelor's or Master's)
## 878 College level vocational education (post-secondary non-tertiary)
## 879 University of applied sciences degree (Bachelor's)
## 880 University degree (Bachelor's or Master's)
## 881 College level vocational education (post-secondary non-tertiary)
## 882 College level vocational education (post-secondary non-tertiary)
## 883 Vocational course, other short vocational training
## 884 University degree (Bachelor's or Master's)
## 885 University of applied sciences degree (Bachelor's)
## 886 Vocational school (upper secondary level)
## 887 College level vocational education (post-secondary non-tertiary)
## 888 Vocational school (upper secondary level)
## 889 Vocational course, other short vocational training
## 890 Vocational course, other short vocational training
## 891 University degree (Bachelor's or Master's)
## 892 College level vocational education (post-secondary non-tertiary)
## 893 No vocational education
## 894 College level vocational education (post-secondary non-tertiary)
## 895 University degree (Bachelor's or Master's)
## 896 University degree (Bachelor's or Master's)
## 897 Vocational course, other short vocational training
## 898 Vocational school (upper secondary level)
## 899 College level vocational education (post-secondary non-tertiary)
## 900 University of applied sciences degree (Bachelor's)
## 901 University of applied sciences degree (Bachelor's)
## 902 Vocational school (upper secondary level)
## 903 Vocational school (upper secondary level)
## 904 College level vocational education (post-secondary non-tertiary)
## 905 University degree (Bachelor's or Master's)
## 906 Vocational school (upper secondary level)
## 907 University of applied sciences degree (Bachelor's)
## 908 College level vocational education (post-secondary non-tertiary)
## 909 No vocational education
## 910 College level vocational education (post-secondary non-tertiary)
## 911 Vocational school (upper secondary level)
## 912 University degree (Bachelor's or Master's)
## 913 No vocational education
## 914 University degree (Bachelor's or Master's)
## 915 College level vocational education (post-secondary non-tertiary)
## 916 College level vocational education (post-secondary non-tertiary)
## 917 Vocational school (upper secondary level)
## 918 College level vocational education (post-secondary non-tertiary)
## 919 No vocational education
## 920 College level vocational education (post-secondary non-tertiary)
## 921 College level vocational education (post-secondary non-tertiary)
## 922 Vocational school (upper secondary level)
## 923 Vocational school (upper secondary level)
## 924 University degree (Bachelor's or Master's)
## 925 University of applied sciences degree (Bachelor's)
## 926 Vocational school (upper secondary level)
## 927 University degree (Bachelor's or Master's)
## 928 University degree (Bachelor's or Master's)
## 929 College level vocational education (post-secondary non-tertiary)
## 930 University degree (Bachelor's or Master's)
## 931 University degree (Bachelor's or Master's)
## 932 College level vocational education (post-secondary non-tertiary)
## 933 College level vocational education (post-secondary non-tertiary)
## 934 College level vocational education (post-secondary non-tertiary)
## 935 College level vocational education (post-secondary non-tertiary)
## 936 Vocational school (upper secondary level)
## 937 Vocational school (upper secondary level)
## 938 No vocational education
## 939 University of applied sciences degree (Bachelor's)
## 940 University degree (Bachelor's or Master's)
## 941 No vocational education
## 942 Vocational school (upper secondary level)
## 943 University degree (Bachelor's or Master's)
## 944 University of applied sciences degree (Bachelor's)
## 945 College level vocational education (post-secondary non-tertiary)
## 946 University of applied sciences degree (Bachelor's)
## 947 Vocational school (upper secondary level)
## 948 University degree (Bachelor's or Master's)
## 949 University of applied sciences degree (Bachelor's)
## 950 Vocational school (upper secondary level)
## 951 College level vocational education (post-secondary non-tertiary)
## 952 College level vocational education (post-secondary non-tertiary)
## 953 University of applied sciences degree (Bachelor's)
## 954 College level vocational education (post-secondary non-tertiary)
## 955 Vocational school (upper secondary level)
## 956 Vocational school (upper secondary level)
## 957 College level vocational education (post-secondary non-tertiary)
## 958 Vocational course, other short vocational training
## 959 Vocational course, other short vocational training
## 960 College level vocational education (post-secondary non-tertiary)
## 961 Vocational school (upper secondary level)
## 962 University degree (Bachelor's or Master's)
## 963 University of applied sciences degree (Bachelor's)
## 964 University degree (Bachelor's or Master's)
## 965 No vocational education
## 966 Vocational school (upper secondary level)
## 967 University of applied sciences degree (Bachelor's)
## 968 College level vocational education (post-secondary non-tertiary)
## 969 University of applied sciences degree (Bachelor's)
## 970 Vocational school (upper secondary level)
## 971 University of applied sciences degree (Bachelor's)
## 972 Vocational school (upper secondary level)
## 973 Vocational school (upper secondary level)
## 974 Vocational school (upper secondary level)
## 975 University degree (Bachelor's or Master's)
## 976 College level vocational education (post-secondary non-tertiary)
## 977 University of applied sciences degree (Bachelor's)
## 978 University of applied sciences degree (Bachelor's)
## 979 Vocational school (upper secondary level)
## 980 Vocational course, other short vocational training
## 981 Vocational school (upper secondary level)
## 982 No vocational education
## 983 College level vocational education (post-secondary non-tertiary)
## 984 Vocational course, other short vocational training
## 985 College level vocational education (post-secondary non-tertiary)
## 986 Vocational school (upper secondary level)
## 987 University of applied sciences degree (Bachelor's)
## 988 No vocational education
## 989 College level vocational education (post-secondary non-tertiary)
## 990 University of applied sciences degree (Bachelor's)
## 991 Vocational school (upper secondary level)
## 992 Vocational course, other short vocational training
## 993 University of applied sciences degree (Bachelor's)
## 994 University degree (Bachelor's or Master's)
## 995 University of applied sciences degree (Bachelor's)
## 996 University of applied sciences degree (Bachelor's)
## 997 Vocational school (upper secondary level)
## 998 College level vocational education (post-secondary non-tertiary)
## 999 Vocational school (upper secondary level)
## 1000 Vocational school (upper secondary level)
## 1001 College level vocational education (post-secondary non-tertiary)
## 1002 University degree (Bachelor's or Master's)
## 1003 Vocational school (upper secondary level)
## 1004 University degree (Bachelor's or Master's)
## 1005 University degree (Bachelor's or Master's)
## 1006 University degree (Bachelor's or Master's)
## 1007 College level vocational education (post-secondary non-tertiary)
## 1008 University of applied sciences degree (Bachelor's)
## 1009 University of applied sciences degree (Bachelor's)
## 1010 Vocational school (upper secondary level)
## 1011 University degree (Bachelor's or Master's)
## 1012 Vocational school (upper secondary level)
## 1013 No vocational education
## 1014 Vocational course, other short vocational training
## 1015 College level vocational education (post-secondary non-tertiary)
## 1016 University degree (Bachelor's or Master's)
## 1017 Vocational school (upper secondary level)
## 1018 Vocational school (upper secondary level)
## 1019 Vocational school (upper secondary level)
## 1020 University degree (Bachelor's or Master's)
## 1021 University of applied sciences degree (Bachelor's)
## 1022 University degree (Bachelor's or Master's)
## 1023 University degree (Bachelor's or Master's)
## 1024 University degree (Bachelor's or Master's)
## 1025 College level vocational education (post-secondary non-tertiary)
## 1026 University degree (Bachelor's or Master's)
## 1027 Vocational school (upper secondary level)
## 1028 Vocational school (upper secondary level)
## 1029 Vocational school (upper secondary level)
## 1030 University degree (Bachelor's or Master's)
## 1031 University of applied sciences degree (Bachelor's)
## 1032 Vocational school (upper secondary level)
## 1033 University of applied sciences degree (Bachelor's)
## 1034 Vocational school (upper secondary level)
## 1035 Vocational school (upper secondary level)
## 1036 College level vocational education (post-secondary non-tertiary)
## 1037 College level vocational education (post-secondary non-tertiary)
## 1038 University of applied sciences degree (Bachelor's)
## 1039 College level vocational education (post-secondary non-tertiary)
## 1040 University degree (Bachelor's or Master's)
## 1041 No vocational education
## 1042 Vocational school (upper secondary level)
## 1043 Vocational school (upper secondary level)
## 1044 University of applied sciences degree (Bachelor's)
## 1045 Vocational school (upper secondary level)
## 1046 Vocational course, other short vocational training
## 1047 University degree (Bachelor's or Master's)
## 1048 University degree (Bachelor's or Master's)
## 1049 Vocational school (upper secondary level)
## 1050 Vocational school (upper secondary level)
## 1051 Vocational school (upper secondary level)
## 1052 Vocational school (upper secondary level)
## 1053 University degree (Bachelor's or Master's)
## 1054 College level vocational education (post-secondary non-tertiary)
## 1055 Vocational school (upper secondary level)
## 1056 University degree (Bachelor's or Master's)
## 1057 College level vocational education (post-secondary non-tertiary)
## 1058 College level vocational education (post-secondary non-tertiary)
## 1059 College level vocational education (post-secondary non-tertiary)
## 1060 Vocational school (upper secondary level)
## 1061 University degree (Bachelor's or Master's)
## 1062 College level vocational education (post-secondary non-tertiary)
## 1063 University of applied sciences degree (Bachelor's)
## 1064 University degree (Bachelor's or Master's)
## 1065 College level vocational education (post-secondary non-tertiary)
## 1066 Vocational school (upper secondary level)
## 1067 No vocational education
## 1068 Vocational course, other short vocational training
## 1069 Vocational school (upper secondary level)
## 1070 Vocational school (upper secondary level)
## 1071 No vocational education
## 1072 Vocational school (upper secondary level)
## 1073 College level vocational education (post-secondary non-tertiary)
## 1074 University of applied sciences degree (Bachelor's)
## 1075 No vocational education
## 1076 Vocational course, other short vocational training
## 1077 College level vocational education (post-secondary non-tertiary)
## 1078 Vocational school (upper secondary level)
## 1079 College level vocational education (post-secondary non-tertiary)
## 1080 University degree (Bachelor's or Master's)
## 1081 University degree (Bachelor's or Master's)
## 1082 College level vocational education (post-secondary non-tertiary)
## 1083 Vocational school (upper secondary level)
## 1084 University of applied sciences degree (Bachelor's)
## 1085 University degree (Bachelor's or Master's)
## 1086 College level vocational education (post-secondary non-tertiary)
## 1087 University of applied sciences degree (Bachelor's)
## 1088 College level vocational education (post-secondary non-tertiary)
## 1089 College level vocational education (post-secondary non-tertiary)
## 1090 Vocational school (upper secondary level)
## 1091 Vocational course, other short vocational training
## 1092 Vocational school (upper secondary level)
## 1093 University degree (Bachelor's or Master's)
## 1094 University degree (Bachelor's or Master's)
## 1095 Vocational school (upper secondary level)
## 1096 No vocational education
## 1097 Vocational school (upper secondary level)
## 1098 University of applied sciences degree (Bachelor's)
## 1099 University degree (Bachelor's or Master's)
## 1100 University degree (Bachelor's or Master's)
## 1101 University degree (Bachelor's or Master's)
## 1102 College level vocational education (post-secondary non-tertiary)
## 1103 Vocational course, other short vocational training
## 1104 University of applied sciences degree (Bachelor's)
## 1105 University of applied sciences degree (Bachelor's)
## 1106 University degree (Bachelor's or Master's)
## 1107 No vocational education
## 1108 University of applied sciences degree (Bachelor's)
## 1109 University degree (Bachelor's or Master's)
## 1110 University of applied sciences degree (Bachelor's)
## 1111 College level vocational education (post-secondary non-tertiary)
## 1112 College level vocational education (post-secondary non-tertiary)
## 1113 College level vocational education (post-secondary non-tertiary)
## 1114 University degree (Bachelor's or Master's)
## 1115 Vocational course, other short vocational training
## 1116 No vocational education
## 1117 University of applied sciences degree (Bachelor's)
## 1118 University of applied sciences degree (Bachelor's)
## 1119 University degree (Bachelor's or Master's)
## 1120 Vocational school (upper secondary level)
## 1121 No vocational education
## 1122 Vocational school (upper secondary level)
## 1123 Vocational school (upper secondary level)
## 1124 Vocational school (upper secondary level)
## 1125 Vocational school (upper secondary level)
## 1126 Vocational school (upper secondary level)
## 1127 Vocational school (upper secondary level)
## 1128 College level vocational education (post-secondary non-tertiary)
## 1129 University of applied sciences degree (Bachelor's)
## 1130 University degree (Bachelor's or Master's)
## 1131 University degree (Bachelor's or Master's)
## 1132 University degree (Bachelor's or Master's)
## 1133 No vocational education
## 1134 University degree (Bachelor's or Master's)
## 1135 University degree (Bachelor's or Master's)
## 1136 University degree (Bachelor's or Master's)
## 1137 No vocational education
## 1138 University of applied sciences degree (Bachelor's)
## 1139 University degree (Bachelor's or Master's)
## 1140 No vocational education
## 1141 University degree (Bachelor's or Master's)
## 1142 University of applied sciences degree (Bachelor's)
## 1143 Vocational school (upper secondary level)
## 1144 College level vocational education (post-secondary non-tertiary)
## 1145 Vocational school (upper secondary level)
## 1146 Vocational school (upper secondary level)
## 1147 University of applied sciences degree (Bachelor's)
## 1148 Vocational school (upper secondary level)
## 1149 Vocational school (upper secondary level)
## 1150 Vocational school (upper secondary level)
## 1151 Vocational course, other short vocational training
## 1152 No vocational education
## 1153 Vocational school (upper secondary level)
## 1154 College level vocational education (post-secondary non-tertiary)
## 1155 Vocational school (upper secondary level)
## 1156 No vocational education
## 1157 University degree (Bachelor's or Master's)
## 1158 Vocational school (upper secondary level)
## 1159 College level vocational education (post-secondary non-tertiary)
## 1160 University degree (Bachelor's or Master's)
## 1161 University degree (Bachelor's or Master's)
## 1162 University degree (Bachelor's or Master's)
## 1163 College level vocational education (post-secondary non-tertiary)
## 1164 No vocational education
## 1165 University degree (Bachelor's or Master's)
## 1166 College level vocational education (post-secondary non-tertiary)
## 1167 College level vocational education (post-secondary non-tertiary)
## 1168 University degree (Bachelor's or Master's)
## 1169 Vocational school (upper secondary level)
## 1170 University degree (Bachelor's or Master's)
## 1171 College level vocational education (post-secondary non-tertiary)
## 1172 University degree (Bachelor's or Master's)
## 1173 Vocational school (upper secondary level)
## 1174 University of applied sciences degree (Bachelor's)
## 1175 Vocational school (upper secondary level)
## 1176 University of applied sciences degree (Bachelor's)
## 1177 Vocational school (upper secondary level)
## 1178 Vocational school (upper secondary level)
## 1179 No vocational education
## 1180 University degree (Bachelor's or Master's)
## 1181 College level vocational education (post-secondary non-tertiary)
## 1182 Vocational school (upper secondary level)
## 1183 No vocational education
## 1184 Vocational school (upper secondary level)
## 1185 University of applied sciences degree (Bachelor's)
## 1186 University of applied sciences degree (Bachelor's)
## 1187 Vocational school (upper secondary level)
## 1188 University degree (Bachelor's or Master's)
## 1189 Vocational school (upper secondary level)
## 1190 Vocational school (upper secondary level)
## 1191 Vocational school (upper secondary level)
## 1192 No vocational education
## 1193 College level vocational education (post-secondary non-tertiary)
## 1194 College level vocational education (post-secondary non-tertiary)
## 1195 University degree (Bachelor's or Master's)
## 1196 Vocational school (upper secondary level)
## 1197 No vocational education
## 1198 College level vocational education (post-secondary non-tertiary)
## 1199 No vocational education
## 1200 Vocational school (upper secondary level)
## 1201 University of applied sciences degree (Bachelor's)
## 1202 University degree (Bachelor's or Master's)
## 1203 University degree (Bachelor's or Master's)
## 1204 Vocational school (upper secondary level)
## 1205 Vocational school (upper secondary level)
## 1206 University degree (Bachelor's or Master's)
## 1207 College level vocational education (post-secondary non-tertiary)
## 1208 Vocational school (upper secondary level)
## 1209 Vocational school (upper secondary level)
## 1210 University degree (Bachelor's or Master's)
## 1211 Vocational school (upper secondary level)
## 1212 University degree (Bachelor's or Master's)
## 1213 No vocational education
## 1214 College level vocational education (post-secondary non-tertiary)
## 1215 University of applied sciences degree (Bachelor's)
## 1216 No vocational education
## 1217 University degree (Bachelor's or Master's)
## 1218 University degree (Bachelor's or Master's)
## 1219 Vocational school (upper secondary level)
## 1220 Vocational school (upper secondary level)
## 1221 Vocational school (upper secondary level)
## 1222 University of applied sciences degree (Bachelor's)
## 1223 No vocational education
## 1224 College level vocational education (post-secondary non-tertiary)
## 1225 University degree (Bachelor's or Master's)
## 1226 University of applied sciences degree (Bachelor's)
## 1227 Vocational school (upper secondary level)
## 1228 University degree (Bachelor's or Master's)
## 1229 University degree (Bachelor's or Master's)
## 1230 University degree (Bachelor's or Master's)
## 1231 No vocational education
## 1232 Vocational school (upper secondary level)
## 1233 Vocational school (upper secondary level)
## 1234 Vocational school (upper secondary level)
## 1235 University of applied sciences degree (Bachelor's)
## 1236 No vocational education
## 1237 No vocational education
## 1238 No vocational education
## 1239 University degree (Bachelor's or Master's)
## 1240 University degree (Bachelor's or Master's)
## 1241 No vocational education
## 1242 University of applied sciences degree (Bachelor's)
## 1243 University degree (Bachelor's or Master's)
## 1244 University degree (Bachelor's or Master's)
## 1245 No vocational education
## 1246 Vocational school (upper secondary level)
## 1247 University degree (Bachelor's or Master's)
## 1248 University degree (Bachelor's or Master's)
## 1249 Vocational school (upper secondary level)
## 1250 University degree (Bachelor's or Master's)
## 1251 Vocational school (upper secondary level)
## 1252 University of applied sciences degree (Bachelor's)
## 1253 Vocational school (upper secondary level)
## 1254 Vocational school (upper secondary level)
## 1255 Vocational school (upper secondary level)
## 1256 University degree (Bachelor's or Master's)
## 1257 University degree (Bachelor's or Master's)
## 1258 University degree (Bachelor's or Master's)
## 1259 Vocational course, other short vocational training
## 1260 College level vocational education (post-secondary non-tertiary)
## 1261 Vocational school (upper secondary level)
## 1262 Vocational school (upper secondary level)
## 1263 Vocational course, other short vocational training
## 1264 University of applied sciences degree (Bachelor's)
## 1265 College level vocational education (post-secondary non-tertiary)
## 1266 University of applied sciences degree (Bachelor's)
## 1267 Vocational school (upper secondary level)
## 1268 Vocational school (upper secondary level)
## 1269 University degree (Bachelor's or Master's)
## 1270 Vocational course, other short vocational training
## 1271 College level vocational education (post-secondary non-tertiary)
## 1272 University degree (Bachelor's or Master's)
## 1273 College level vocational education (post-secondary non-tertiary)
## 1274 No vocational education
## 1275 Vocational school (upper secondary level)
## 1276 University of applied sciences degree (Bachelor's)
## 1277 University degree (Bachelor's or Master's)
## 1278 Vocational school (upper secondary level)
## 1279 University degree (Bachelor's or Master's)
## 1280 University degree (Bachelor's or Master's)
## 1281 Vocational school (upper secondary level)
## 1282 University degree (Bachelor's or Master's)
## 1283 College level vocational education (post-secondary non-tertiary)
## 1284 University degree (Bachelor's or Master's)
## 1285 University of applied sciences degree (Bachelor's)
## 1286 No vocational education
## 1287 University degree (Bachelor's or Master's)
## 1288 College level vocational education (post-secondary non-tertiary)
## 1289 University degree (Bachelor's or Master's)
## 1290 University of applied sciences degree (Bachelor's)
## 1291 University degree (Bachelor's or Master's)
## 1292 University degree (Bachelor's or Master's)
## 1293 University degree (Bachelor's or Master's)
## 1294 University of applied sciences degree (Bachelor's)
## 1295 University of applied sciences degree (Bachelor's)
## 1296 Vocational course, other short vocational training
## 1297 University of applied sciences degree (Bachelor's)
## 1298 University degree (Bachelor's or Master's)
## 1299 Vocational school (upper secondary level)
## 1300 University of applied sciences degree (Bachelor's)
## 1301 University degree (Bachelor's or Master's)
## 1302 Vocational school (upper secondary level)
## 1303 University degree (Bachelor's or Master's)
## 1304 University degree (Bachelor's or Master's)
## 1305 University of applied sciences degree (Bachelor's)
## 1306 University of applied sciences degree (Bachelor's)
## 1307 University of applied sciences degree (Bachelor's)
## 1308 College level vocational education (post-secondary non-tertiary)
## 1309 University degree (Bachelor's or Master's)
## 1310 University degree (Bachelor's or Master's)
## 1311 No vocational education
## 1312 Vocational school (upper secondary level)
## 1313 University degree (Bachelor's or Master's)
## 1314 University degree (Bachelor's or Master's)
## 1315 College level vocational education (post-secondary non-tertiary)
## 1316 University degree (Bachelor's or Master's)
## 1317 University degree (Bachelor's or Master's)
## 1318 No vocational education
## 1319 Vocational school (upper secondary level)
## 1320 University of applied sciences degree (Bachelor's)
## 1321 Vocational school (upper secondary level)
## 1322 Vocational school (upper secondary level)
## 1323 University degree (Bachelor's or Master's)
## 1324 Vocational school (upper secondary level)
## 1325 Vocational school (upper secondary level)
## 1326 Vocational course, other short vocational training
## 1327 College level vocational education (post-secondary non-tertiary)
## 1328 Vocational school (upper secondary level)
## 1329 No vocational education
## 1330 No vocational education
## 1331 University degree (Bachelor's or Master's)
## 1332 University degree (Bachelor's or Master's)
## 1333 Vocational school (upper secondary level)
## 1334 College level vocational education (post-secondary non-tertiary)
## 1335 University of applied sciences degree (Bachelor's)
## 1336 College level vocational education (post-secondary non-tertiary)
## 1337 Vocational school (upper secondary level)
## 1338 University of applied sciences degree (Bachelor's)
## 1339 No vocational education
## 1340 Vocational school (upper secondary level)
## 1341 University of applied sciences degree (Bachelor's)
## 1342 University degree (Bachelor's or Master's)
## 1343 College level vocational education (post-secondary non-tertiary)
## 1344 College level vocational education (post-secondary non-tertiary)
## 1345 University degree (Bachelor's or Master's)
## 1346 No vocational education
## 1347 Vocational school (upper secondary level)
## 1348 Vocational course, other short vocational training
## 1349 University of applied sciences degree (Bachelor's)
## 1350 College level vocational education (post-secondary non-tertiary)
## 1351 University degree (Bachelor's or Master's)
## 1352 University degree (Bachelor's or Master's)
## 1353 University degree (Bachelor's or Master's)
## 1354 University of applied sciences degree (Bachelor's)
## 1355 University degree (Bachelor's or Master's)
## 1356 University of applied sciences degree (Bachelor's)
## 1357 University of applied sciences degree (Bachelor's)
## 1358 University of applied sciences degree (Bachelor's)
## 1359 Vocational school (upper secondary level)
## 1360 Vocational school (upper secondary level)
## 1361 Vocational school (upper secondary level)
## 1362 Vocational course, other short vocational training
## 1363 Vocational school (upper secondary level)
## 1364 Vocational school (upper secondary level)
## 1365 Vocational course, other short vocational training
## 1366 University degree (Bachelor's or Master's)
## 1367 No vocational education
## 1368 Vocational school (upper secondary level)
## 1369 Vocational school (upper secondary level)
## 1370 Vocational school (upper secondary level)
## 1371 University of applied sciences degree (Bachelor's)
## 1372 Vocational school (upper secondary level)
## 1373 University degree (Bachelor's or Master's)
## 1374 Vocational school (upper secondary level)
## 1375 Vocational school (upper secondary level)
## 1376 Vocational school (upper secondary level)
## 1377 Vocational school (upper secondary level)
## 1378 Vocational course, other short vocational training
## 1379 Vocational school (upper secondary level)
## 1380 Vocational school (upper secondary level)
## 1381 Vocational school (upper secondary level)
## 1382 Vocational school (upper secondary level)
## 1383 University degree (Bachelor's or Master's)
## 1384 Vocational school (upper secondary level)
## 1385 Vocational school (upper secondary level)
## 1386 Vocational course, other short vocational training
## 1387 Vocational course, other short vocational training
## 1388 College level vocational education (post-secondary non-tertiary)
## 1389 Vocational school (upper secondary level)
## 1390 College level vocational education (post-secondary non-tertiary)
## 1391 University of applied sciences degree (Bachelor's)
## 1392 No vocational education
## 1393 Vocational school (upper secondary level)
## 1394 No vocational education
## 1395 University of applied sciences degree (Bachelor's)
## 1396 College level vocational education (post-secondary non-tertiary)
## 1397 Vocational course, other short vocational training
## 1398 Vocational school (upper secondary level)
## 1399 University of applied sciences degree (Bachelor's)
## 1400 University degree (Bachelor's or Master's)
## 1401 No vocational education
## 1402 Vocational course, other short vocational training
## 1403 No vocational education
## 1404 Vocational school (upper secondary level)
## 1405 University of applied sciences degree (Bachelor's)
## 1406 College level vocational education (post-secondary non-tertiary)
## 1407 University of applied sciences degree (Bachelor's)
## 1408 Vocational school (upper secondary level)
## 1409 Vocational course, other short vocational training
## 1410 University of applied sciences degree (Bachelor's)
## 1411 College level vocational education (post-secondary non-tertiary)
## 1412 University of applied sciences degree (Bachelor's)
## 1413 Vocational course, other short vocational training
## 1414 No vocational education
## 1415 No vocational education
## 1416 No vocational education
## 1417 Vocational course, other short vocational training
## 1418 Vocational school (upper secondary level)
## 1419 College level vocational education (post-secondary non-tertiary)
## 1420 College level vocational education (post-secondary non-tertiary)
## 1421 Vocational school (upper secondary level)
## 1422 College level vocational education (post-secondary non-tertiary)
## 1423 University of applied sciences degree (Bachelor's)
## 1424 University degree (Bachelor's or Master's)
## 1425 No vocational education
## 1426 University of applied sciences degree (Bachelor's)
## 1427 University degree (Bachelor's or Master's)
## 1428 College level vocational education (post-secondary non-tertiary)
## 1429 University of applied sciences degree (Bachelor's)
## 1430 University degree (Bachelor's or Master's)
## 1431 University of applied sciences degree (Bachelor's)
## 1432 University of applied sciences degree (Bachelor's)
## 1433 University of applied sciences degree (Bachelor's)
## 1434 No vocational education
## 1435 College level vocational education (post-secondary non-tertiary)
## 1436 Vocational school (upper secondary level)
## 1437 No vocational education
## 1438 College level vocational education (post-secondary non-tertiary)
## 1439 Vocational school (upper secondary level)
## 1440 University degree (Bachelor's or Master's)
## 1441 Vocational school (upper secondary level)
## 1442 University degree (Bachelor's or Master's)
## 1443 University of applied sciences degree (Bachelor's)
## 1444 Vocational school (upper secondary level)
## 1445 University of applied sciences degree (Bachelor's)
## 1446 University degree (Bachelor's or Master's)
## 1447 Vocational school (upper secondary level)
## 1448 University of applied sciences degree (Bachelor's)
## 1449 College level vocational education (post-secondary non-tertiary)
## 1450 Vocational school (upper secondary level)
## 1451 University degree (Bachelor's or Master's)
## 1452 University degree (Bachelor's or Master's)
## 1453 Vocational school (upper secondary level)
## 1454 Vocational school (upper secondary level)
## 1455 Vocational school (upper secondary level)
## 1456 University degree (Bachelor's or Master's)
## 1457 No vocational education
## 1458 University of applied sciences degree (Bachelor's)
## 1459 Vocational course, other short vocational training
## 1460 Vocational school (upper secondary level)
## 1461 Vocational school (upper secondary level)
## 1462 No vocational education
## 1463 University degree (Bachelor's or Master's)
## 1464 Vocational school (upper secondary level)
## 1465 Vocational school (upper secondary level)
## 1466 University degree (Bachelor's or Master's)
## 1467 College level vocational education (post-secondary non-tertiary)
## 1468 Vocational school (upper secondary level)
## 1469 University degree (Bachelor's or Master's)
## 1470 Vocational school (upper secondary level)
## 1471 Vocational school (upper secondary level)
## 1472 No vocational education
## 1473 University degree (Bachelor's or Master's)
## 1474 Vocational school (upper secondary level)
## 1475 University of applied sciences degree (Bachelor's)
## 1476 Vocational school (upper secondary level)
## 1477 No vocational education
## 1478 University of applied sciences degree (Bachelor's)
## 1479 Vocational course, other short vocational training
## 1480 Vocational school (upper secondary level)
## 1481 Vocational school (upper secondary level)
## 1482 College level vocational education (post-secondary non-tertiary)
## 1483 College level vocational education (post-secondary non-tertiary)
## 1484 No vocational education
## 1485 University of applied sciences degree (Bachelor's)
## 1486 University degree (Bachelor's or Master's)
## 1487 College level vocational education (post-secondary non-tertiary)
## 1488 University degree (Bachelor's or Master's)
## 1489 Vocational school (upper secondary level)
## 1490 No vocational education
## 1491 Vocational school (upper secondary level)
## 1492 Vocational course, other short vocational training
## 1493 Vocational school (upper secondary level)
## 1494 College level vocational education (post-secondary non-tertiary)
## 1495 University of applied sciences degree (Bachelor's)
## 1496 College level vocational education (post-secondary non-tertiary)
## 1497 Vocational school (upper secondary level)
## 1498 Vocational school (upper secondary level)
## 1499 Vocational school (upper secondary level)
## 1500 University degree (Bachelor's or Master's)
## 1501 University of applied sciences degree (Bachelor's)
## 1502 College level vocational education (post-secondary non-tertiary)
## 1503 College level vocational education (post-secondary non-tertiary)
## 1504 College level vocational education (post-secondary non-tertiary)
## 1505 No vocational education
## 1506 University of applied sciences degree (Bachelor's)
## 1507 University degree (Bachelor's or Master's)
## 1508 University of applied sciences degree (Bachelor's)
## 1509 Vocational school (upper secondary level)
## 1510 Vocational school (upper secondary level)
## 1511 University degree (Bachelor's or Master's)
## 1512 Vocational school (upper secondary level)
## 1513 College level vocational education (post-secondary non-tertiary)
## 1514 No vocational education
## 1515 Vocational course, other short vocational training
## 1516 No vocational education
## 1517 No vocational education
## 1518 Vocational school (upper secondary level)
## 1519 College level vocational education (post-secondary non-tertiary)
## 1520 University of applied sciences degree (Bachelor's)
## 1521 Vocational school (upper secondary level)
## 1522 University degree (Bachelor's or Master's)
## 1523 No vocational education
## 1524 Vocational school (upper secondary level)
## 1525 College level vocational education (post-secondary non-tertiary)
## 1526 No vocational education
## 1527 Vocational school (upper secondary level)
## 1528 Vocational school (upper secondary level)
## 1529 Vocational school (upper secondary level)
## 1530 Vocational school (upper secondary level)
## 1531 No vocational education
## 1532 Vocational school (upper secondary level)
## 1533 University degree (Bachelor's or Master's)
## 1534 University degree (Bachelor's or Master's)
## 1535 Vocational school (upper secondary level)
## 1536 College level vocational education (post-secondary non-tertiary)
## 1537 University degree (Bachelor's or Master's)
## 1538 College level vocational education (post-secondary non-tertiary)
## 1539 University of applied sciences degree (Bachelor's)
## 1540 College level vocational education (post-secondary non-tertiary)
## 1541 No vocational education
## 1542 Vocational school (upper secondary level)
## 1543 Vocational school (upper secondary level)
## 1544 Vocational school (upper secondary level)
## 1545 Vocational course, other short vocational training
## 1546 University degree (Bachelor's or Master's)
## 1547 No vocational education
## 1548 University degree (Bachelor's or Master's)
## 1549 Vocational school (upper secondary level)
## 1550 University of applied sciences degree (Bachelor's)
## 1551 Vocational school (upper secondary level)
## 1552 Vocational course, other short vocational training
## 1553 University of applied sciences degree (Bachelor's)
## 1554 Vocational school (upper secondary level)
## 1555 Vocational school (upper secondary level)
## 1556 Vocational school (upper secondary level)
## 1557 No vocational education
## 1558 Vocational school (upper secondary level)
## 1559 College level vocational education (post-secondary non-tertiary)
## 1560 No vocational education
## 1561 College level vocational education (post-secondary non-tertiary)
## 1562 University of applied sciences degree (Bachelor's)
## 1563 No vocational education
## 1564 No vocational education
## 1565 Vocational school (upper secondary level)
## 1566 No vocational education
## 1567 University degree (Bachelor's or Master's)
## 1568 University degree (Bachelor's or Master's)
## 1569 University degree (Bachelor's or Master's)
## 1570 No vocational education
## 1571 Vocational school (upper secondary level)
## 1572 University degree (Bachelor's or Master's)
## 1573 Vocational school (upper secondary level)
## 1574 Vocational school (upper secondary level)
## 1575 Vocational school (upper secondary level)
## 1576 No vocational education
## 1577 Vocational school (upper secondary level)
## 1578 University degree (Bachelor's or Master's)
## 1579 No vocational education
## 1580 No vocational education
## 1581 University of applied sciences degree (Bachelor's)
## 1582 College level vocational education (post-secondary non-tertiary)
## 1583 Vocational school (upper secondary level)
## 1584 University of applied sciences degree (Bachelor's)
## 1585 Vocational school (upper secondary level)
## 1586 Vocational school (upper secondary level)
## 1587 Vocational school (upper secondary level)
## 1588 Vocational school (upper secondary level)
## 1589 University of applied sciences degree (Bachelor's)
## 1590 No vocational education
## 1591 University of applied sciences degree (Bachelor's)
## 1592 University of applied sciences degree (Bachelor's)
## 1593 Vocational school (upper secondary level)
## 1594 No vocational education
## 1595 University degree (Bachelor's or Master's)
## 1596 University degree (Bachelor's or Master's)
## 1597 College level vocational education (post-secondary non-tertiary)
## 1598 University degree (Bachelor's or Master's)
## 1599 Vocational school (upper secondary level)
## 1600 Vocational course, other short vocational training
## 1601 No vocational education
## 1602 No vocational education
## 1603 University of applied sciences degree (Bachelor's)
## 1604 University degree (Bachelor's or Master's)
## 1605 University degree (Bachelor's or Master's)
## 1606 University of applied sciences degree (Bachelor's)
## 1607 Vocational school (upper secondary level)
## 1608 Vocational school (upper secondary level)
## 1609 Vocational school (upper secondary level)
## 1610 University degree (Bachelor's or Master's)
## 1611 Vocational course, other short vocational training
## 1612 University degree (Bachelor's or Master's)
## 1613 Vocational course, other short vocational training
## 1614 University of applied sciences degree (Bachelor's)
## 1615 University degree (Bachelor's or Master's)
## 1616 University degree (Bachelor's or Master's)
## 1617 University degree (Bachelor's or Master's)
## 1618 No vocational education
## 1619 University degree (Bachelor's or Master's)
## 1620 University degree (Bachelor's or Master's)
## 1621 Vocational school (upper secondary level)
## 1622 University degree (Bachelor's or Master's)
## 1623 University degree (Bachelor's or Master's)
## 1624 No vocational education
## 1625 No vocational education
## 1626 University degree (Bachelor's or Master's)
## 1627 University of applied sciences degree (Bachelor's)
## 1628 University of applied sciences degree (Bachelor's)
## 1629 Vocational school (upper secondary level)
## 1630 University degree (Bachelor's or Master's)
## 1631 University degree (Bachelor's or Master's)
## 1632 University degree (Bachelor's or Master's)
## 1633 University degree (Bachelor's or Master's)
## 1634 No vocational education
## 1635 Vocational school (upper secondary level)
## 1636 No vocational education
## 1637 Vocational school (upper secondary level)
## 1638 University of applied sciences degree (Bachelor's)
## 1639 No vocational education
## 1640 University degree (Bachelor's or Master's)
## 1641 University degree (Bachelor's or Master's)
## 1642 No vocational education
## 1643 University degree (Bachelor's or Master's)
## 1644 University degree (Bachelor's or Master's)
## 1645 University degree (Bachelor's or Master's)
## 1646 University of applied sciences degree (Bachelor's)
## 1647 University degree (Bachelor's or Master's)
## 1648 No vocational education
## 1649 University degree (Bachelor's or Master's)
## 1650 College level vocational education (post-secondary non-tertiary)
## 1651 University degree (Bachelor's or Master's)
## 1652 Vocational course, other short vocational training
## 1653 University of applied sciences degree (Bachelor's)
## 1654 University degree (Bachelor's or Master's)
## 1655 University degree (Bachelor's or Master's)
## 1656 University degree (Bachelor's or Master's)
## 1657 No vocational education
## 1658 No vocational education
## 1659 No vocational education
## 1660 No vocational education
## 1661 University degree (Bachelor's or Master's)
## 1662 No vocational education
## 1663 University degree (Bachelor's or Master's)
## 1664 University degree (Bachelor's or Master's)
## 1665 University of applied sciences degree (Bachelor's)
## 1666 Vocational school (upper secondary level)
## 1667 University degree (Bachelor's or Master's)
## 1668 No vocational education
## 1669 No vocational education
## 1670 University of applied sciences degree (Bachelor's)
## 1671 University degree (Bachelor's or Master's)
## 1672 University degree (Bachelor's or Master's)
## 1673 University degree (Bachelor's or Master's)
## 1674 University degree (Bachelor's or Master's)
## 1675 No vocational education
## 1676 No vocational education
## 1677 No vocational education
## 1678 University of applied sciences degree (Bachelor's)
## 1679 University degree (Bachelor's or Master's)
## 1680 University degree (Bachelor's or Master's)
## 1681 University degree (Bachelor's or Master's)
## 1682 Vocational school (upper secondary level)
## 1683 University of applied sciences degree (Bachelor's)
## 1684 University of applied sciences degree (Bachelor's)
## 1685 No vocational education
## 1686 Vocational school (upper secondary level)
## 1687 University degree (Bachelor's or Master's)
## 1688 University degree (Bachelor's or Master's)
## 1689 University degree (Bachelor's or Master's)
## 1690 University of applied sciences degree (Bachelor's)
## 1691 University degree (Bachelor's or Master's)
## 1692 University degree (Bachelor's or Master's)
## 1693 University of applied sciences degree (Bachelor's)
## 1694 University of applied sciences degree (Bachelor's)
## 1695 Vocational school (upper secondary level)
## 1696 No vocational education
## 1697 University of applied sciences degree (Bachelor's)
## 1698 Vocational school (upper secondary level)
## 1699 University degree (Bachelor's or Master's)
## 1700 University degree (Bachelor's or Master's)
## 1701 University degree (Bachelor's or Master's)
## 1702 University degree (Bachelor's or Master's)
## 1703 University of applied sciences degree (Bachelor's)
## 1704 No vocational education
## 1705 Vocational school (upper secondary level)
## 1706 Vocational school (upper secondary level)
## 1707 University degree (Bachelor's or Master's)
## 1708 No vocational education
## 1709 No vocational education
## 1710 No vocational education
## 1711 Vocational school (upper secondary level)
## 1712 Vocational school (upper secondary level)
## 1713 Vocational school (upper secondary level)
## 1714 No vocational education
## 1715 University of applied sciences degree (Bachelor's)
## 1716 University degree (Bachelor's or Master's)
## 1717 University degree (Bachelor's or Master's)
## 1718 University of applied sciences degree (Bachelor's)
## 1719 Vocational school (upper secondary level)
## 1720 Vocational school (upper secondary level)
## 1721 University degree (Bachelor's or Master's)
## 1722 Vocational school (upper secondary level)
## 1723 University of applied sciences degree (Bachelor's)
## 1724 University degree (Bachelor's or Master's)
## 1725 University of applied sciences degree (Bachelor's)
## 1726 College level vocational education (post-secondary non-tertiary)
## 1727 No vocational education
## 1728 No vocational education
## 1729 University of applied sciences degree (Bachelor's)
## 1730 University of applied sciences degree (Bachelor's)
## 1731 University degree (Bachelor's or Master's)
## 1732 Vocational course, other short vocational training
## 1733 Vocational school (upper secondary level)
## 1734 University degree (Bachelor's or Master's)
## 1735 Vocational school (upper secondary level)
## 1736 University degree (Bachelor's or Master's)
## 1737 University degree (Bachelor's or Master's)
## 1738 College level vocational education (post-secondary non-tertiary)
## 1739 University degree (Bachelor's or Master's)
## 1740 No vocational education
## 1741 University degree (Bachelor's or Master's)
## 1742 University degree (Bachelor's or Master's)
## 1743 College level vocational education (post-secondary non-tertiary)
## 1744 No vocational education
## 1745 No vocational education
## 1746 No vocational education
## 1747 No vocational education
## 1748 University degree (Bachelor's or Master's)
## 1749 University degree (Bachelor's or Master's)
## 1750 University degree (Bachelor's or Master's)
## 1751 University of applied sciences degree (Bachelor's)
## 1752 University of applied sciences degree (Bachelor's)
## 1753 University of applied sciences degree (Bachelor's)
## 1754 Vocational school (upper secondary level)
## 1755 University degree (Bachelor's or Master's)
## 1756 No vocational education
## 1757 No vocational education
## 1758 University degree (Bachelor's or Master's)
## 1759 No vocational education
## 1760 University degree (Bachelor's or Master's)
## 1761 College level vocational education (post-secondary non-tertiary)
## 1762 Vocational school (upper secondary level)
## 1763 College level vocational education (post-secondary non-tertiary)
## 1764 No vocational education
## 1765 No vocational education
## 1766 No vocational education
## 1767 Vocational school (upper secondary level)
## 1768 University of applied sciences degree (Bachelor's)
## 1769 University of applied sciences degree (Bachelor's)
## 1770 Vocational course, other short vocational training
## 1771 Vocational school (upper secondary level)
## 1772 No vocational education
## 1773 University degree (Bachelor's or Master's)
## 1774 No vocational education
## 1775 Vocational course, other short vocational training
## 1776 University degree (Bachelor's or Master's)
## 1777 University degree (Bachelor's or Master's)
## 1778 University degree (Bachelor's or Master's)
## 1779 University degree (Bachelor's or Master's)
## 1780 No vocational education
## 1781 Vocational school (upper secondary level)
## 1782 University degree (Bachelor's or Master's)
## 1783 University degree (Bachelor's or Master's)
## 1784 University degree (Bachelor's or Master's)
## 1785 No vocational education
## 1786 University of applied sciences degree (Bachelor's)
## 1787 University of applied sciences degree (Bachelor's)
## 1788 University degree (Bachelor's or Master's)
## 1789 Vocational school (upper secondary level)
## 1790 University degree (Bachelor's or Master's)
## 1791 No vocational education
## 1792 University degree (Bachelor's or Master's)
## 1793 University of applied sciences degree (Bachelor's)
## 1794 Vocational school (upper secondary level)
## 1795 University degree (Bachelor's or Master's)
## 1796 University of applied sciences degree (Bachelor's)
## 1797 University degree (Bachelor's or Master's)
## 1798 Vocational course, other short vocational training
## 1799 University degree (Bachelor's or Master's)
## 1800 No vocational education
## 1801 No vocational education
## 1802 College level vocational education (post-secondary non-tertiary)
## 1803 No vocational education
## 1804 University degree (Bachelor's or Master's)
## 1805 University degree (Bachelor's or Master's)
## 1806 No vocational education
## 1807 University degree (Bachelor's or Master's)
## 1808 Vocational school (upper secondary level)
## 1809 University of applied sciences degree (Bachelor's)
## 1810 University degree (Bachelor's or Master's)
## 1811 No vocational education
## 1812 Vocational school (upper secondary level)
## 1813 University degree (Bachelor's or Master's)
## 1814 Vocational school (upper secondary level)
## 1815 Vocational school (upper secondary level)
## 1816 University degree (Bachelor's or Master's)
## 1817 University degree (Bachelor's or Master's)
## 1818 No vocational education
## 1819 Vocational school (upper secondary level)
## 1820 University degree (Bachelor's or Master's)
## 1821 University degree (Bachelor's or Master's)
## 1822 University degree (Bachelor's or Master's)
## 1823 University of applied sciences degree (Bachelor's)
## 1824 College level vocational education (post-secondary non-tertiary)
## 1825 Vocational school (upper secondary level)
## 1826 University degree (Bachelor's or Master's)
## 1827 Vocational school (upper secondary level)
## 1828 University of applied sciences degree (Bachelor's)
## 1829 University degree (Bachelor's or Master's)
## 1830 University degree (Bachelor's or Master's)
## 1831 University of applied sciences degree (Bachelor's)
## 1832 No vocational education
## 1833 Vocational school (upper secondary level)
## 1834 University of applied sciences degree (Bachelor's)
## 1835 University degree (Bachelor's or Master's)
## 1836 College level vocational education (post-secondary non-tertiary)
## 1837 Vocational school (upper secondary level)
## 1838 University of applied sciences degree (Bachelor's)
## 1839 University degree (Bachelor's or Master's)
## 1840 University degree (Bachelor's or Master's)
## 1841 University of applied sciences degree (Bachelor's)
## 1842 University degree (Bachelor's or Master's)
## 1843 No vocational education
## 1844 Vocational school (upper secondary level)
## 1845 University degree (Bachelor's or Master's)
## 1846 No vocational education
## 1847 No vocational education
## 1848 University of applied sciences degree (Bachelor's)
## 1849 University of applied sciences degree (Bachelor's)
## 1850 University of applied sciences degree (Bachelor's)
## 1851 No vocational education
## 1852 University degree (Bachelor's or Master's)
## 1853 Vocational school (upper secondary level)
## 1854 Vocational school (upper secondary level)
## 1855 University of applied sciences degree (Bachelor's)
## 1856 No vocational education
## 1857 No vocational education
## 1858 No vocational education
## 1859 Vocational school (upper secondary level)
## 1860 University of applied sciences degree (Bachelor's)
## 1861 University degree (Bachelor's or Master's)
## 1862 University of applied sciences degree (Bachelor's)
## 1863 No vocational education
## 1864 Vocational school (upper secondary level)
## 1865 Vocational school (upper secondary level)
## 1866 University of applied sciences degree (Bachelor's)
## 1867 University degree (Bachelor's or Master's)
## 1868 University of applied sciences degree (Bachelor's)
## 1869 Vocational school (upper secondary level)
## 1870 University degree (Bachelor's or Master's)
## 1871 University of applied sciences degree (Bachelor's)
## 1872 University degree (Bachelor's or Master's)
## 1873 No vocational education
## 1874 Vocational school (upper secondary level)
## 1875 University of applied sciences degree (Bachelor's)
## 1876 Vocational school (upper secondary level)
## 1877 Vocational school (upper secondary level)
## 1878 University of applied sciences degree (Bachelor's)
## 1879 Vocational school (upper secondary level)
## 1880 Vocational school (upper secondary level)
## 1881 Vocational school (upper secondary level)
## 1882 No vocational education
## 1883 Vocational course, other short vocational training
## 1884 No vocational education
## 1885 Vocational school (upper secondary level)
## 1886 Vocational school (upper secondary level)
## 1887 No vocational education
## 1888 Vocational school (upper secondary level)
## 1889 University degree (Bachelor's or Master's)
## 1890 University of applied sciences degree (Bachelor's)
## 1891 No vocational education
## 1892 University of applied sciences degree (Bachelor's)
## 1893 Vocational school (upper secondary level)
## 1894 Vocational school (upper secondary level)
## 1895 University of applied sciences degree (Bachelor's)
## 1896 Vocational school (upper secondary level)
## 1897 No vocational education
## 1898 University of applied sciences degree (Bachelor's)
## 1899 University degree (Bachelor's or Master's)
## 1900 University degree (Bachelor's or Master's)
## 1901 College level vocational education (post-secondary non-tertiary)
## 1902 University of applied sciences degree (Bachelor's)
## 1903 University degree (Bachelor's or Master's)
## 1904 Vocational school (upper secondary level)
## 1905 Vocational school (upper secondary level)
## 1906 No vocational education
## 1907 No vocational education
## 1908 Vocational school (upper secondary level)
## 1909 University of applied sciences degree (Bachelor's)
## 1910 Vocational school (upper secondary level)
## 1911 Vocational course, other short vocational training
## 1912 College level vocational education (post-secondary non-tertiary)
## 1913 College level vocational education (post-secondary non-tertiary)
## 1914 Vocational school (upper secondary level)
## 1915 University of applied sciences degree (Bachelor's)
## 1916 Vocational school (upper secondary level)
## 1917 Vocational school (upper secondary level)
## 1918 Vocational school (upper secondary level)
## 1919 Vocational school (upper secondary level)
## 1920 Vocational school (upper secondary level)
## 1921 No vocational education
## 1922 College level vocational education (post-secondary non-tertiary)
## 1923 Vocational school (upper secondary level)
## 1924 College level vocational education (post-secondary non-tertiary)
## 1925 Vocational school (upper secondary level)
## 1926 University degree (Bachelor's or Master's)
## 1927 No vocational education
## 1928 No vocational education
## 1929 No vocational education
## 1930 No vocational education
## 1931 University degree (Bachelor's or Master's)
## 1932 No vocational education
## 1933 College level vocational education (post-secondary non-tertiary)
## 1934 No vocational education
## 1935 Vocational school (upper secondary level)
## 1936 No vocational education
## 1937 Vocational school (upper secondary level)
## 1938 Vocational course, other short vocational training
## occupation
## 1 Intermediate level employee (clerical, technical, admin.)
## 2 Lower managerial/professional employee
## 3 Pensioner/retired
## 4 Unemployed
## 5 Worker
## 6 Lower managerial/professional employee
## 7 Pensioner/retired
## 8 Intermediate level employee (clerical, technical, admin.)
## 9 Intermediate level employee (clerical, technical, admin.)
## 10 Pensioner/retired
## 11 Pensioner/retired
## 12 Pensioner/retired
## 13 Pensioner/retired
## 14 Lower managerial/professional employee
## 15 Worker
## 16 Lower managerial/professional employee
## 17 Pensioner/retired
## 18 Student
## 19 Lower managerial/professional employee
## 20 Unemployed
## 21 Lower managerial/professional employee
## 22 Lower managerial/professional employee
## 23 Lower managerial/professional employee
## 24 Worker
## 25 Higher managerial employee
## 26 Unemployed
## 27 Intermediate level employee (clerical, technical, admin.)
## 28 Worker
## 29 Worker
## 30 Intermediate level employee (clerical, technical, admin.)
## 31 Lower managerial/professional employee
## 32 Lower managerial/professional employee
## 33 Worker
## 34 Lower managerial/professional employee
## 35 Other
## 36 Pensioner/retired
## 37 Entrepreneur, self-employed, own-account worker
## 38 Entrepreneur, self-employed, own-account worker
## 39 Entrepreneur, self-employed, own-account worker
## 40 Entrepreneur, self-employed, own-account worker
## 41 Pensioner/retired
## 42 Pensioner/retired
## 43 Worker
## 44 Worker
## 45 Student
## 46 Pensioner/retired
## 47 Entrepreneur, self-employed, own-account worker
## 48 Intermediate level employee (clerical, technical, admin.)
## 49 Pensioner/retired
## 50 Intermediate level employee (clerical, technical, admin.)
## 51 Worker
## 52 Worker
## 53 Intermediate level employee (clerical, technical, admin.)
## 54 Pensioner/retired
## 55 Worker
## 56 Intermediate level employee (clerical, technical, admin.)
## 57 Pensioner/retired
## 58 Intermediate level employee (clerical, technical, admin.)
## 59 Entrepreneur, self-employed, own-account worker
## 60 Higher managerial employee
## 61 Intermediate level employee (clerical, technical, admin.)
## 62 Intermediate level employee (clerical, technical, admin.)
## 63 Pensioner/retired
## 64 Unemployed
## 65 Pensioner/retired
## 66 Worker
## 67 Pensioner/retired
## 68 Pensioner/retired
## 69 Other
## 70 Intermediate level employee (clerical, technical, admin.)
## 71 Entrepreneur, self-employed, own-account worker
## 72 Worker
## 73 Intermediate level employee (clerical, technical, admin.)
## 74 Lower managerial/professional employee
## 75 Worker
## 76 Pensioner/retired
## 77 Entrepreneur, self-employed, own-account worker
## 78 Lower managerial/professional employee
## 79 Intermediate level employee (clerical, technical, admin.)
## 80 Pensioner/retired
## 81 Intermediate level employee (clerical, technical, admin.)
## 82 Intermediate level employee (clerical, technical, admin.)
## 83 Worker
## 84 Unemployed
## 85 Pensioner/retired
## 86 Pensioner/retired
## 87 Worker
## 88 Pensioner/retired
## 89 Entrepreneur, self-employed, own-account worker
## 90 Worker
## 91 Unemployed
## 92 Lower managerial/professional employee
## 93 Intermediate level employee (clerical, technical, admin.)
## 94 Lower managerial/professional employee
## 95 Lower managerial/professional employee
## 96 Pensioner/retired
## 97 Lower managerial/professional employee
## 98 Worker
## 99 Worker
## 100 Higher managerial employee
## 101 Worker
## 102 Lower managerial/professional employee
## 103 Pensioner/retired
## 104 Farmer, agricultural entrepreneur
## 105 Intermediate level employee (clerical, technical, admin.)
## 106 Entrepreneur, self-employed, own-account worker
## 107 Lower managerial/professional employee
## 108 Intermediate level employee (clerical, technical, admin.)
## 109 Pensioner/retired
## 110 Worker
## 111 Lower managerial/professional employee
## 112 Unemployed
## 113 Worker
## 114 Entrepreneur, self-employed, own-account worker
## 115 Lower managerial/professional employee
## 116 Intermediate level employee (clerical, technical, admin.)
## 117 Worker
## 118 Lower managerial/professional employee
## 119 Pensioner/retired
## 120 Worker
## 121 Lower managerial/professional employee
## 122 Intermediate level employee (clerical, technical, admin.)
## 123 Lower managerial/professional employee
## 124 Pensioner/retired
## 125 Lower managerial/professional employee
## 126 Pensioner/retired
## 127 Intermediate level employee (clerical, technical, admin.)
## 128 Lower managerial/professional employee
## 129 Intermediate level employee (clerical, technical, admin.)
## 130 Worker
## 131 Worker
## 132 Pensioner/retired
## 133 Other
## 134 Lower managerial/professional employee
## 135 Pensioner/retired
## 136 Worker
## 137 Worker
## 138 Worker
## 139 Intermediate level employee (clerical, technical, admin.)
## 140 Lower managerial/professional employee
## 141 Other
## 142 Other
## 143 Intermediate level employee (clerical, technical, admin.)
## 144 Worker
## 145 Worker
## 146 Worker
## 147 Entrepreneur, self-employed, own-account worker
## 148 Pensioner/retired
## 149 Pensioner/retired
## 150 Entrepreneur, self-employed, own-account worker
## 151 Worker
## 152 Worker
## 153 Pensioner/retired
## 154 Worker
## 155 Unemployed
## 156 Unemployed
## 157 Worker
## 158 Pensioner/retired
## 159 Worker
## 160 Student
## 161 Pensioner/retired
## 162 Lower managerial/professional employee
## 163 Lower managerial/professional employee
## 164 Worker
## 165 Worker
## 166 Pensioner/retired
## 167 Worker
## 168 Pensioner/retired
## 169 Pensioner/retired
## 170 Lower managerial/professional employee
## 171 Student
## 172 Unemployed
## 173 Pensioner/retired
## 174 Pensioner/retired
## 175 Pensioner/retired
## 176 Intermediate level employee (clerical, technical, admin.)
## 177 Pensioner/retired
## 178 Other
## 179 Pensioner/retired
## 180 Pensioner/retired
## 181 Unemployed
## 182 Pensioner/retired
## 183 Pensioner/retired
## 184 Worker
## 185 Worker
## 186 Pensioner/retired
## 187 Pensioner/retired
## 188 Intermediate level employee (clerical, technical, admin.)
## 189 Lower managerial/professional employee
## 190 Pensioner/retired
## 191 Worker
## 192 Other
## 193 Worker
## 194 Worker
## 195 Worker
## 196 Worker
## 197 Worker
## 198 Pensioner/retired
## 199 Lower managerial/professional employee
## 200 Worker
## 201 Intermediate level employee (clerical, technical, admin.)
## 202 Worker
## 203 Lower managerial/professional employee
## 204 Lower managerial/professional employee
## 205 Pensioner/retired
## 206 Lower managerial/professional employee
## 207 Worker
## 208 Lower managerial/professional employee
## 209 Worker
## 210 Intermediate level employee (clerical, technical, admin.)
## 211 Pensioner/retired
## 212 Lower managerial/professional employee
## 213 Lower managerial/professional employee
## 214 Intermediate level employee (clerical, technical, admin.)
## 215 Pensioner/retired
## 216 Pensioner/retired
## 217 Pensioner/retired
## 218 Worker
## 219 Pensioner/retired
## 220 Pensioner/retired
## 221 Lower managerial/professional employee
## 222 Worker
## 223 Worker
## 224 Worker
## 225 Intermediate level employee (clerical, technical, admin.)
## 226 Lower managerial/professional employee
## 227 Worker
## 228 Pensioner/retired
## 229 Pensioner/retired
## 230 Pensioner/retired
## 231 Intermediate level employee (clerical, technical, admin.)
## 232 Worker
## 233 Entrepreneur, self-employed, own-account worker
## 234 Pensioner/retired
## 235 Unemployed
## 236 Lower managerial/professional employee
## 237 Worker
## 238 Intermediate level employee (clerical, technical, admin.)
## 239 Pensioner/retired
## 240 Worker
## 241 Pensioner/retired
## 242 Entrepreneur, self-employed, own-account worker
## 243 Intermediate level employee (clerical, technical, admin.)
## 244 Pensioner/retired
## 245 Entrepreneur, self-employed, own-account worker
## 246 Entrepreneur, self-employed, own-account worker
## 247 Worker
## 248 Pensioner/retired
## 249 Worker
## 250 Pensioner/retired
## 251 Worker
## 252 Lower managerial/professional employee
## 253 Pensioner/retired
## 254 Worker
## 255 Pensioner/retired
## 256 Intermediate level employee (clerical, technical, admin.)
## 257 Higher managerial employee
## 258 Worker
## 259 Worker
## 260 Worker
## 261 Lower managerial/professional employee
## 262 Pensioner/retired
## 263 Unemployed
## 264 Intermediate level employee (clerical, technical, admin.)
## 265 Unemployed
## 266 Intermediate level employee (clerical, technical, admin.)
## 267 Lower managerial/professional employee
## 268 Worker
## 269 Pensioner/retired
## 270 Pensioner/retired
## 271 Worker
## 272 Pensioner/retired
## 273 Pensioner/retired
## 274 Worker
## 275 Farmer, agricultural entrepreneur
## 276 Worker
## 277 Intermediate level employee (clerical, technical, admin.)
## 278 Worker
## 279 Lower managerial/professional employee
## 280 Pensioner/retired
## 281 Higher managerial employee
## 282 Worker
## 283 Pensioner/retired
## 284 Pensioner/retired
## 285 Pensioner/retired
## 286 Worker
## 287 Pensioner/retired
## 288 Pensioner/retired
## 289 Pensioner/retired
## 290 Intermediate level employee (clerical, technical, admin.)
## 291 Lower managerial/professional employee
## 292 Pensioner/retired
## 293 Pensioner/retired
## 294 Other
## 295 Intermediate level employee (clerical, technical, admin.)
## 296 Pensioner/retired
## 297 Worker
## 298 Pensioner/retired
## 299 Intermediate level employee (clerical, technical, admin.)
## 300 Pensioner/retired
## 301 Pensioner/retired
## 302 Pensioner/retired
## 303 Pensioner/retired
## 304 Intermediate level employee (clerical, technical, admin.)
## 305 Pensioner/retired
## 306 Worker
## 307 Lower managerial/professional employee
## 308 Student
## 309 Worker
## 310 Worker
## 311 Pensioner/retired
## 312 Lower managerial/professional employee
## 313 Pensioner/retired
## 314 Worker
## 315 Pensioner/retired
## 316 Pensioner/retired
## 317 Lower managerial/professional employee
## 318 Unemployed
## 319 Worker
## 320 Worker
## 321 Pensioner/retired
## 322 Pensioner/retired
## 323 Worker
## 324 Intermediate level employee (clerical, technical, admin.)
## 325 Entrepreneur, self-employed, own-account worker
## 326 Intermediate level employee (clerical, technical, admin.)
## 327 Worker
## 328 Pensioner/retired
## 329 Pensioner/retired
## 330 Worker
## 331 Entrepreneur, self-employed, own-account worker
## 332 Other
## 333 Intermediate level employee (clerical, technical, admin.)
## 334 Lower managerial/professional employee
## 335 Lower managerial/professional employee
## 336 Lower managerial/professional employee
## 337 Pensioner/retired
## 338 Unemployed
## 339 Intermediate level employee (clerical, technical, admin.)
## 340 Worker
## 341 Worker
## 342 Intermediate level employee (clerical, technical, admin.)
## 343 Farmer, agricultural entrepreneur
## 344 Worker
## 345 Worker
## 346 Pensioner/retired
## 347 Pensioner/retired
## 348 Lower managerial/professional employee
## 349 Worker
## 350 Pensioner/retired
## 351 Lower managerial/professional employee
## 352 Pensioner/retired
## 353 Worker
## 354 Pensioner/retired
## 355 Worker
## 356 Pensioner/retired
## 357 Lower managerial/professional employee
## 358 Lower managerial/professional employee
## 359 Pensioner/retired
## 360 Intermediate level employee (clerical, technical, admin.)
## 361 Lower managerial/professional employee
## 362 Worker
## 363 Intermediate level employee (clerical, technical, admin.)
## 364 Entrepreneur, self-employed, own-account worker
## 365 Entrepreneur, self-employed, own-account worker
## 366 Worker
## 367 Worker
## 368 Worker
## 369 Worker
## 370 Intermediate level employee (clerical, technical, admin.)
## 371 Pensioner/retired
## 372 Worker
## 373 Pensioner/retired
## 374 Worker
## 375 Pensioner/retired
## 376 Pensioner/retired
## 377 Worker
## 378 Lower managerial/professional employee
## 379 Worker
## 380 Higher managerial employee
## 381 Entrepreneur, self-employed, own-account worker
## 382 Intermediate level employee (clerical, technical, admin.)
## 383 Pensioner/retired
## 384 Pensioner/retired
## 385 Intermediate level employee (clerical, technical, admin.)
## 386 Pensioner/retired
## 387 Pensioner/retired
## 388 Pensioner/retired
## 389 Pensioner/retired
## 390 Unemployed
## 391 Worker
## 392 Intermediate level employee (clerical, technical, admin.)
## 393 Pensioner/retired
## 394 Intermediate level employee (clerical, technical, admin.)
## 395 Pensioner/retired
## 396 Pensioner/retired
## 397 Pensioner/retired
## 398 Pensioner/retired
## 399 Worker
## 400 Worker
## 401 Pensioner/retired
## 402 Pensioner/retired
## 403 Worker
## 404 Pensioner/retired
## 405 Lower managerial/professional employee
## 406 Pensioner/retired
## 407 Pensioner/retired
## 408 Pensioner/retired
## 409 Pensioner/retired
## 410 Lower managerial/professional employee
## 411 Worker
## 412 Student
## 413 Worker
## 414 Pensioner/retired
## 415 Pensioner/retired
## 416 Pensioner/retired
## 417 Intermediate level employee (clerical, technical, admin.)
## 418 Pensioner/retired
## 419 Pensioner/retired
## 420 Intermediate level employee (clerical, technical, admin.)
## 421 Pensioner/retired
## 422 Lower managerial/professional employee
## 423 Entrepreneur, self-employed, own-account worker
## 424 Intermediate level employee (clerical, technical, admin.)
## 425 Intermediate level employee (clerical, technical, admin.)
## 426 Intermediate level employee (clerical, technical, admin.)
## 427 Lower managerial/professional employee
## 428 Pensioner/retired
## 429 Lower managerial/professional employee
## 430 Worker
## 431 Intermediate level employee (clerical, technical, admin.)
## 432 Unemployed
## 433 Lower managerial/professional employee
## 434 Pensioner/retired
## 435 Lower managerial/professional employee
## 436 Entrepreneur, self-employed, own-account worker
## 437 Lower managerial/professional employee
## 438 Worker
## 439 Pensioner/retired
## 440 Worker
## 441 Worker
## 442 Pensioner/retired
## 443 Pensioner/retired
## 444 Pensioner/retired
## 445 Pensioner/retired
## 446 Worker
## 447 Lower managerial/professional employee
## 448 Worker
## 449 Pensioner/retired
## 450 Lower managerial/professional employee
## 451 Worker
## 452 Worker
## 453 Intermediate level employee (clerical, technical, admin.)
## 454 Worker
## 455 Worker
## 456 Entrepreneur, self-employed, own-account worker
## 457 Entrepreneur, self-employed, own-account worker
## 458 Higher managerial employee
## 459 Pensioner/retired
## 460 Pensioner/retired
## 461 Pensioner/retired
## 462 Intermediate level employee (clerical, technical, admin.)
## 463 Pensioner/retired
## 464 Pensioner/retired
## 465 Worker
## 466 Worker
## 467 Pensioner/retired
## 468 Unemployed
## 469 Lower managerial/professional employee
## 470 Pensioner/retired
## 471 Worker
## 472 Worker
## 473 Intermediate level employee (clerical, technical, admin.)
## 474 Pensioner/retired
## 475 Pensioner/retired
## 476 Pensioner/retired
## 477 Pensioner/retired
## 478 Pensioner/retired
## 479 Pensioner/retired
## 480 Intermediate level employee (clerical, technical, admin.)
## 481 Pensioner/retired
## 482 Lower managerial/professional employee
## 483 Worker
## 484 Pensioner/retired
## 485 Intermediate level employee (clerical, technical, admin.)
## 486 Lower managerial/professional employee
## 487 Worker
## 488 Pensioner/retired
## 489 Pensioner/retired
## 490 Lower managerial/professional employee
## 491 Lower managerial/professional employee
## 492 Lower managerial/professional employee
## 493 Other
## 494 Pensioner/retired
## 495 Worker
## 496 Worker
## 497 Pensioner/retired
## 498 Intermediate level employee (clerical, technical, admin.)
## 499 Lower managerial/professional employee
## 500 Pensioner/retired
## 501 Pensioner/retired
## 502 Pensioner/retired
## 503 Intermediate level employee (clerical, technical, admin.)
## 504 Pensioner/retired
## 505 Pensioner/retired
## 506 Pensioner/retired
## 507 Pensioner/retired
## 508 Pensioner/retired
## 509 Intermediate level employee (clerical, technical, admin.)
## 510 Pensioner/retired
## 511 Pensioner/retired
## 512 Pensioner/retired
## 513 Unemployed
## 514 Worker
## 515 Worker
## 516 Pensioner/retired
## 517 Intermediate level employee (clerical, technical, admin.)
## 518 Worker
## 519 Pensioner/retired
## 520 Intermediate level employee (clerical, technical, admin.)
## 521 Intermediate level employee (clerical, technical, admin.)
## 522 Intermediate level employee (clerical, technical, admin.)
## 523 Lower managerial/professional employee
## 524 Pensioner/retired
## 525 Worker
## 526 Lower managerial/professional employee
## 527 Pensioner/retired
## 528 Pensioner/retired
## 529 Lower managerial/professional employee
## 530 Intermediate level employee (clerical, technical, admin.)
## 531 Pensioner/retired
## 532 Pensioner/retired
## 533 Intermediate level employee (clerical, technical, admin.)
## 534 Worker
## 535 Intermediate level employee (clerical, technical, admin.)
## 536 Worker
## 537 Entrepreneur, self-employed, own-account worker
## 538 Worker
## 539 Pensioner/retired
## 540 Worker
## 541 Worker
## 542 Pensioner/retired
## 543 Other
## 544 Lower managerial/professional employee
## 545 Lower managerial/professional employee
## 546 Worker
## 547 Lower managerial/professional employee
## 548 Pensioner/retired
## 549 Worker
## 550 Entrepreneur, self-employed, own-account worker
## 551 Pensioner/retired
## 552 Worker
## 553 Pensioner/retired
## 554 Pensioner/retired
## 555 Intermediate level employee (clerical, technical, admin.)
## 556 Lower managerial/professional employee
## 557 Lower managerial/professional employee
## 558 Intermediate level employee (clerical, technical, admin.)
## 559 Farmer, agricultural entrepreneur
## 560 Intermediate level employee (clerical, technical, admin.)
## 561 Intermediate level employee (clerical, technical, admin.)
## 562 Pensioner/retired
## 563 Farmer, agricultural entrepreneur
## 564 Worker
## 565 Farmer, agricultural entrepreneur
## 566 Worker
## 567 Pensioner/retired
## 568 Intermediate level employee (clerical, technical, admin.)
## 569 Pensioner/retired
## 570 Student
## 571 Pensioner/retired
## 572 Pensioner/retired
## 573 Intermediate level employee (clerical, technical, admin.)
## 574 Pensioner/retired
## 575 Entrepreneur, self-employed, own-account worker
## 576 Entrepreneur, self-employed, own-account worker
## 577 Student
## 578 Lower managerial/professional employee
## 579 Pensioner/retired
## 580 Pensioner/retired
## 581 Worker
## 582 Intermediate level employee (clerical, technical, admin.)
## 583 Lower managerial/professional employee
## 584 Pensioner/retired
## 585 Lower managerial/professional employee
## 586 Pensioner/retired
## 587 Intermediate level employee (clerical, technical, admin.)
## 588 Intermediate level employee (clerical, technical, admin.)
## 589 Worker
## 590 Higher managerial employee
## 591 Pensioner/retired
## 592 Intermediate level employee (clerical, technical, admin.)
## 593 Unemployed
## 594 Pensioner/retired
## 595 Entrepreneur, self-employed, own-account worker
## 596 Farmer, agricultural entrepreneur
## 597 Worker
## 598 Pensioner/retired
## 599 Pensioner/retired
## 600 Pensioner/retired
## 601 Worker
## 602 Worker
## 603 Worker
## 604 Entrepreneur, self-employed, own-account worker
## 605 Worker
## 606 Pensioner/retired
## 607 Other
## 608 Intermediate level employee (clerical, technical, admin.)
## 609 Pensioner/retired
## 610 Pensioner/retired
## 611 Pensioner/retired
## 612 Housewife/house husband, homemaker
## 613 Lower managerial/professional employee
## 614 Intermediate level employee (clerical, technical, admin.)
## 615 Entrepreneur, self-employed, own-account worker
## 616 Lower managerial/professional employee
## 617 Student
## 618 Intermediate level employee (clerical, technical, admin.)
## 619 Worker
## 620 Student
## 621 Worker
## 622 Other
## 623 Intermediate level employee (clerical, technical, admin.)
## 624 Lower managerial/professional employee
## 625 Lower managerial/professional employee
## 626 Pensioner/retired
## 627 Pensioner/retired
## 628 Pensioner/retired
## 629 Worker
## 630 Student
## 631 Pensioner/retired
## 632 Pensioner/retired
## 633 Worker
## 634 Worker
## 635 Worker
## 636 Pensioner/retired
## 637 Pensioner/retired
## 638 Lower managerial/professional employee
## 639 Intermediate level employee (clerical, technical, admin.)
## 640 Entrepreneur, self-employed, own-account worker
## 641 Lower managerial/professional employee
## 642 Intermediate level employee (clerical, technical, admin.)
## 643 Student
## 644 Entrepreneur, self-employed, own-account worker
## 645 Worker
## 646 Pensioner/retired
## 647 Pensioner/retired
## 648 Student
## 649 Pensioner/retired
## 650 Worker
## 651 Worker
## 652 Pensioner/retired
## 653 Intermediate level employee (clerical, technical, admin.)
## 654 Student
## 655 Worker
## 656 Worker
## 657 Student
## 658 Student
## 659 Intermediate level employee (clerical, technical, admin.)
## 660 Student
## 661 Worker
## 662 Worker
## 663 Unemployed
## 664 Student
## 665 Worker
## 666 Pensioner/retired
## 667 Other
## 668 Intermediate level employee (clerical, technical, admin.)
## 669 Student
## 670 Pensioner/retired
## 671 Pensioner/retired
## 672 Pensioner/retired
## 673 Intermediate level employee (clerical, technical, admin.)
## 674 Intermediate level employee (clerical, technical, admin.)
## 675 Worker
## 676 Worker
## 677 Lower managerial/professional employee
## 678 Student
## 679 Farmer, agricultural entrepreneur
## 680 Unemployed
## 681 Worker
## 682 Pensioner/retired
## 683 Pensioner/retired
## 684 Worker
## 685 Lower managerial/professional employee
## 686 Worker
## 687 Entrepreneur, self-employed, own-account worker
## 688 Lower managerial/professional employee
## 689 Lower managerial/professional employee
## 690 Pensioner/retired
## 691 Intermediate level employee (clerical, technical, admin.)
## 692 Pensioner/retired
## 693 Pensioner/retired
## 694 Worker
## 695 Pensioner/retired
## 696 Lower managerial/professional employee
## 697 Pensioner/retired
## 698 Intermediate level employee (clerical, technical, admin.)
## 699 Lower managerial/professional employee
## 700 Entrepreneur, self-employed, own-account worker
## 701 Worker
## 702 Worker
## 703 Pensioner/retired
## 704 Intermediate level employee (clerical, technical, admin.)
## 705 Worker
## 706 Farmer, agricultural entrepreneur
## 707 Pensioner/retired
## 708 Lower managerial/professional employee
## 709 Worker
## 710 Intermediate level employee (clerical, technical, admin.)
## 711 Pensioner/retired
## 712 Lower managerial/professional employee
## 713 Pensioner/retired
## 714 Worker
## 715 Student
## 716 Farmer, agricultural entrepreneur
## 717 Worker
## 718 Worker
## 719 Pensioner/retired
## 720 Unemployed
## 721 Pensioner/retired
## 722 Worker
## 723 Worker
## 724 Pensioner/retired
## 725 Worker
## 726 Worker
## 727 Intermediate level employee (clerical, technical, admin.)
## 728 Unemployed
## 729 Worker
## 730 Intermediate level employee (clerical, technical, admin.)
## 731 Pensioner/retired
## 732 Pensioner/retired
## 733 Pensioner/retired
## 734 Pensioner/retired
## 735 Worker
## 736 Worker
## 737 Lower managerial/professional employee
## 738 Pensioner/retired
## 739 Pensioner/retired
## 740 Entrepreneur, self-employed, own-account worker
## 741 Intermediate level employee (clerical, technical, admin.)
## 742 Pensioner/retired
## 743 Pensioner/retired
## 744 Worker
## 745 Lower managerial/professional employee
## 746 Worker
## 747 Lower managerial/professional employee
## 748 Pensioner/retired
## 749 Pensioner/retired
## 750 Pensioner/retired
## 751 Intermediate level employee (clerical, technical, admin.)
## 752 Pensioner/retired
## 753 Lower managerial/professional employee
## 754 Worker
## 755 Pensioner/retired
## 756 Worker
## 757 Intermediate level employee (clerical, technical, admin.)
## 758 Worker
## 759 Pensioner/retired
## 760 Pensioner/retired
## 761 Lower managerial/professional employee
## 762 Intermediate level employee (clerical, technical, admin.)
## 763 Worker
## 764 Worker
## 765 Pensioner/retired
## 766 Worker
## 767 Intermediate level employee (clerical, technical, admin.)
## 768 Worker
## 769 Pensioner/retired
## 770 Pensioner/retired
## 771 Worker
## 772 Entrepreneur, self-employed, own-account worker
## 773 Worker
## 774 Worker
## 775 Lower managerial/professional employee
## 776 Worker
## 777 Worker
## 778 Lower managerial/professional employee
## 779 Entrepreneur, self-employed, own-account worker
## 780 Lower managerial/professional employee
## 781 Worker
## 782 Pensioner/retired
## 783 Pensioner/retired
## 784 Pensioner/retired
## 785 Worker
## 786 Pensioner/retired
## 787 Pensioner/retired
## 788 Worker
## 789 Worker
## 790 Pensioner/retired
## 791 Pensioner/retired
## 792 Farmer, agricultural entrepreneur
## 793 Worker
## 794 Worker
## 795 Student
## 796 Pensioner/retired
## 797 Worker
## 798 Pensioner/retired
## 799 Pensioner/retired
## 800 Worker
## 801 Pensioner/retired
## 802 Lower managerial/professional employee
## 803 Worker
## 804 Pensioner/retired
## 805 Pensioner/retired
## 806 Pensioner/retired
## 807 Student
## 808 Worker
## 809 Higher managerial employee
## 810 Student
## 811 Worker
## 812 Worker
## 813 Farmer, agricultural entrepreneur
## 814 Worker
## 815 Higher managerial employee
## 816 Lower managerial/professional employee
## 817 Worker
## 818 Pensioner/retired
## 819 Pensioner/retired
## 820 Worker
## 821 Pensioner/retired
## 822 Pensioner/retired
## 823 Pensioner/retired
## 824 Pensioner/retired
## 825 Lower managerial/professional employee
## 826 Worker
## 827 Pensioner/retired
## 828 Worker
## 829 Pensioner/retired
## 830 Intermediate level employee (clerical, technical, admin.)
## 831 Entrepreneur, self-employed, own-account worker
## 832 Student
## 833 Lower managerial/professional employee
## 834 Intermediate level employee (clerical, technical, admin.)
## 835 Pensioner/retired
## 836 Lower managerial/professional employee
## 837 Worker
## 838 Pensioner/retired
## 839 Pensioner/retired
## 840 Worker
## 841 Student
## 842 Lower managerial/professional employee
## 843 Intermediate level employee (clerical, technical, admin.)
## 844 Lower managerial/professional employee
## 845 Intermediate level employee (clerical, technical, admin.)
## 846 Pensioner/retired
## 847 Worker
## 848 Pensioner/retired
## 849 Pensioner/retired
## 850 Worker
## 851 Worker
## 852 Worker
## 853 Worker
## 854 Worker
## 855 Student
## 856 Pensioner/retired
## 857 Pensioner/retired
## 858 Intermediate level employee (clerical, technical, admin.)
## 859 Pensioner/retired
## 860 Lower managerial/professional employee
## 861 Lower managerial/professional employee
## 862 Pensioner/retired
## 863 Pensioner/retired
## 864 Intermediate level employee (clerical, technical, admin.)
## 865 Intermediate level employee (clerical, technical, admin.)
## 866 Intermediate level employee (clerical, technical, admin.)
## 867 Pensioner/retired
## 868 Pensioner/retired
## 869 Lower managerial/professional employee
## 870 Intermediate level employee (clerical, technical, admin.)
## 871 Intermediate level employee (clerical, technical, admin.)
## 872 Pensioner/retired
## 873 Pensioner/retired
## 874 Intermediate level employee (clerical, technical, admin.)
## 875 Lower managerial/professional employee
## 876 Lower managerial/professional employee
## 877 Lower managerial/professional employee
## 878 Pensioner/retired
## 879 Worker
## 880 Lower managerial/professional employee
## 881 Worker
## 882 Lower managerial/professional employee
## 883 Pensioner/retired
## 884 Student
## 885 Lower managerial/professional employee
## 886 Pensioner/retired
## 887 Pensioner/retired
## 888 Worker
## 889 Worker
## 890 Pensioner/retired
## 891 Worker
## 892 Pensioner/retired
## 893 Intermediate level employee (clerical, technical, admin.)
## 894 Worker
## 895 Lower managerial/professional employee
## 896 Lower managerial/professional employee
## 897 Unemployed
## 898 Worker
## 899 Higher managerial employee
## 900 Pensioner/retired
## 901 Intermediate level employee (clerical, technical, admin.)
## 902 Pensioner/retired
## 903 Intermediate level employee (clerical, technical, admin.)
## 904 Intermediate level employee (clerical, technical, admin.)
## 905 Lower managerial/professional employee
## 906 Pensioner/retired
## 907 Intermediate level employee (clerical, technical, admin.)
## 908 Pensioner/retired
## 909 Pensioner/retired
## 910 Pensioner/retired
## 911 Worker
## 912 Entrepreneur, self-employed, own-account worker
## 913 Pensioner/retired
## 914 Lower managerial/professional employee
## 915 Worker
## 916 Worker
## 917 Worker
## 918 Other
## 919 Intermediate level employee (clerical, technical, admin.)
## 920 Lower managerial/professional employee
## 921 Pensioner/retired
## 922 Worker
## 923 Unemployed
## 924 Lower managerial/professional employee
## 925 Entrepreneur, self-employed, own-account worker
## 926 Worker
## 927 Lower managerial/professional employee
## 928 Lower managerial/professional employee
## 929 Higher managerial employee
## 930 Entrepreneur, self-employed, own-account worker
## 931 Lower managerial/professional employee
## 932 Worker
## 933 Pensioner/retired
## 934 Unemployed
## 935 Pensioner/retired
## 936 Worker
## 937 Pensioner/retired
## 938 Worker
## 939 Pensioner/retired
## 940 Lower managerial/professional employee
## 941 Pensioner/retired
## 942 Pensioner/retired
## 943 Unemployed
## 944 Lower managerial/professional employee
## 945 Unemployed
## 946 Worker
## 947 Worker
## 948 Pensioner/retired
## 949 Lower managerial/professional employee
## 950 Housewife/house husband, homemaker
## 951 Intermediate level employee (clerical, technical, admin.)
## 952 Worker
## 953 Worker
## 954 Worker
## 955 Pensioner/retired
## 956 Worker
## 957 Pensioner/retired
## 958 Pensioner/retired
## 959 Pensioner/retired
## 960 Lower managerial/professional employee
## 961 Pensioner/retired
## 962 Unemployed
## 963 Lower managerial/professional employee
## 964 Lower managerial/professional employee
## 965 Entrepreneur, self-employed, own-account worker
## 966 Intermediate level employee (clerical, technical, admin.)
## 967 Entrepreneur, self-employed, own-account worker
## 968 Worker
## 969 Intermediate level employee (clerical, technical, admin.)
## 970 Pensioner/retired
## 971 Intermediate level employee (clerical, technical, admin.)
## 972 Worker
## 973 Pensioner/retired
## 974 Worker
## 975 Pensioner/retired
## 976 Lower managerial/professional employee
## 977 Pensioner/retired
## 978 Intermediate level employee (clerical, technical, admin.)
## 979 Pensioner/retired
## 980 Worker
## 981 Student
## 982 Housewife/house husband, homemaker
## 983 Intermediate level employee (clerical, technical, admin.)
## 984 Pensioner/retired
## 985 Pensioner/retired
## 986 Entrepreneur, self-employed, own-account worker
## 987 Worker
## 988 Lower managerial/professional employee
## 989 Pensioner/retired
## 990 Student
## 991 Worker
## 992 Pensioner/retired
## 993 Pensioner/retired
## 994 Lower managerial/professional employee
## 995 Pensioner/retired
## 996 Pensioner/retired
## 997 Pensioner/retired
## 998 Worker
## 999 Pensioner/retired
## 1000 Student
## 1001 Lower managerial/professional employee
## 1002 Lower managerial/professional employee
## 1003 Pensioner/retired
## 1004 Lower managerial/professional employee
## 1005 Lower managerial/professional employee
## 1006 Higher managerial employee
## 1007 Pensioner/retired
## 1008 Worker
## 1009 Lower managerial/professional employee
## 1010 Pensioner/retired
## 1011 Lower managerial/professional employee
## 1012 Unemployed
## 1013 Unemployed
## 1014 Pensioner/retired
## 1015 Pensioner/retired
## 1016 Pensioner/retired
## 1017 Worker
## 1018 Worker
## 1019 Pensioner/retired
## 1020 Lower managerial/professional employee
## 1021 Intermediate level employee (clerical, technical, admin.)
## 1022 Worker
## 1023 Lower managerial/professional employee
## 1024 Intermediate level employee (clerical, technical, admin.)
## 1025 Pensioner/retired
## 1026 Lower managerial/professional employee
## 1027 Unemployed
## 1028 Worker
## 1029 Worker
## 1030 Lower managerial/professional employee
## 1031 Unemployed
## 1032 Unemployed
## 1033 Worker
## 1034 Pensioner/retired
## 1035 Pensioner/retired
## 1036 Lower managerial/professional employee
## 1037 Intermediate level employee (clerical, technical, admin.)
## 1038 Lower managerial/professional employee
## 1039 Pensioner/retired
## 1040 Intermediate level employee (clerical, technical, admin.)
## 1041 Lower managerial/professional employee
## 1042 Worker
## 1043 Pensioner/retired
## 1044 Student
## 1045 Worker
## 1046 Pensioner/retired
## 1047 Worker
## 1048 Lower managerial/professional employee
## 1049 Pensioner/retired
## 1050 Other
## 1051 Pensioner/retired
## 1052 Worker
## 1053 Higher managerial employee
## 1054 Pensioner/retired
## 1055 Higher managerial employee
## 1056 Worker
## 1057 Lower managerial/professional employee
## 1058 Pensioner/retired
## 1059 Worker
## 1060 Worker
## 1061 Pensioner/retired
## 1062 Pensioner/retired
## 1063 Worker
## 1064 Intermediate level employee (clerical, technical, admin.)
## 1065 Other
## 1066 Worker
## 1067 Intermediate level employee (clerical, technical, admin.)
## 1068 Pensioner/retired
## 1069 Worker
## 1070 Farmer, agricultural entrepreneur
## 1071 Pensioner/retired
## 1072 Unemployed
## 1073 Worker
## 1074 Entrepreneur, self-employed, own-account worker
## 1075 Student
## 1076 Lower managerial/professional employee
## 1077 Unemployed
## 1078 Worker
## 1079 Lower managerial/professional employee
## 1080 Intermediate level employee (clerical, technical, admin.)
## 1081 Entrepreneur, self-employed, own-account worker
## 1082 Worker
## 1083 Worker
## 1084 Lower managerial/professional employee
## 1085 Lower managerial/professional employee
## 1086 Pensioner/retired
## 1087 Worker
## 1088 Worker
## 1089 Pensioner/retired
## 1090 Worker
## 1091 Pensioner/retired
## 1092 Worker
## 1093 Pensioner/retired
## 1094 Student
## 1095 Worker
## 1096 Worker
## 1097 Pensioner/retired
## 1098 Pensioner/retired
## 1099 Pensioner/retired
## 1100 Student
## 1101 Entrepreneur, self-employed, own-account worker
## 1102 Pensioner/retired
## 1103 Unemployed
## 1104 Intermediate level employee (clerical, technical, admin.)
## 1105 Lower managerial/professional employee
## 1106 Intermediate level employee (clerical, technical, admin.)
## 1107 Student
## 1108 Student
## 1109 Worker
## 1110 Worker
## 1111 Pensioner/retired
## 1112 Worker
## 1113 Pensioner/retired
## 1114 Student
## 1115 Worker
## 1116 Unemployed
## 1117 Intermediate level employee (clerical, technical, admin.)
## 1118 Worker
## 1119 Pensioner/retired
## 1120 Worker
## 1121 Student
## 1122 Worker
## 1123 Worker
## 1124 Worker
## 1125 Worker
## 1126 Pensioner/retired
## 1127 Farmer, agricultural entrepreneur
## 1128 Entrepreneur, self-employed, own-account worker
## 1129 Lower managerial/professional employee
## 1130 Lower managerial/professional employee
## 1131 Lower managerial/professional employee
## 1132 Lower managerial/professional employee
## 1133 Unemployed
## 1134 Student
## 1135 Pensioner/retired
## 1136 Lower managerial/professional employee
## 1137 Worker
## 1138 Worker
## 1139 Student
## 1140 Lower managerial/professional employee
## 1141 Lower managerial/professional employee
## 1142 Lower managerial/professional employee
## 1143 Entrepreneur, self-employed, own-account worker
## 1144 Unemployed
## 1145 Worker
## 1146 Worker
## 1147 Worker
## 1148 Pensioner/retired
## 1149 Entrepreneur, self-employed, own-account worker
## 1150 Worker
## 1151 Worker
## 1152 Student
## 1153 Unemployed
## 1154 Worker
## 1155 Worker
## 1156 Worker
## 1157 Intermediate level employee (clerical, technical, admin.)
## 1158 Farmer, agricultural entrepreneur
## 1159 Worker
## 1160 Worker
## 1161 Lower managerial/professional employee
## 1162 Worker
## 1163 Pensioner/retired
## 1164 Student
## 1165 Pensioner/retired
## 1166 Pensioner/retired
## 1167 Pensioner/retired
## 1168 Other
## 1169 Worker
## 1170 Intermediate level employee (clerical, technical, admin.)
## 1171 Intermediate level employee (clerical, technical, admin.)
## 1172 Lower managerial/professional employee
## 1173 Worker
## 1174 Lower managerial/professional employee
## 1175 Unemployed
## 1176 Student
## 1177 Intermediate level employee (clerical, technical, admin.)
## 1178 Worker
## 1179 Pensioner/retired
## 1180 Unemployed
## 1181 Lower managerial/professional employee
## 1182 Worker
## 1183 Worker
## 1184 Pensioner/retired
## 1185 Lower managerial/professional employee
## 1186 Lower managerial/professional employee
## 1187 Worker
## 1188 Lower managerial/professional employee
## 1189 Worker
## 1190 Worker
## 1191 Unemployed
## 1192 Student
## 1193 Intermediate level employee (clerical, technical, admin.)
## 1194 Pensioner/retired
## 1195 Worker
## 1196 Pensioner/retired
## 1197 Lower managerial/professional employee
## 1198 Intermediate level employee (clerical, technical, admin.)
## 1199 Pensioner/retired
## 1200 Worker
## 1201 Intermediate level employee (clerical, technical, admin.)
## 1202 Intermediate level employee (clerical, technical, admin.)
## 1203 Intermediate level employee (clerical, technical, admin.)
## 1204 Intermediate level employee (clerical, technical, admin.)
## 1205 Worker
## 1206 Intermediate level employee (clerical, technical, admin.)
## 1207 Higher managerial employee
## 1208 Worker
## 1209 Worker
## 1210 Student
## 1211 Pensioner/retired
## 1212 Student
## 1213 Worker
## 1214 Worker
## 1215 Lower managerial/professional employee
## 1216 Student
## 1217 Student
## 1218 Worker
## 1219 Pensioner/retired
## 1220 Worker
## 1221 Unemployed
## 1222 Higher managerial employee
## 1223 Pensioner/retired
## 1224 Worker
## 1225 Unemployed
## 1226 Worker
## 1227 Pensioner/retired
## 1228 Intermediate level employee (clerical, technical, admin.)
## 1229 Lower managerial/professional employee
## 1230 Intermediate level employee (clerical, technical, admin.)
## 1231 Student
## 1232 Unemployed
## 1233 Worker
## 1234 Worker
## 1235 Worker
## 1236 Intermediate level employee (clerical, technical, admin.)
## 1237 Unemployed
## 1238 Student
## 1239 Lower managerial/professional employee
## 1240 Lower managerial/professional employee
## 1241 Pensioner/retired
## 1242 Worker
## 1243 Pensioner/retired
## 1244 Lower managerial/professional employee
## 1245 Pensioner/retired
## 1246 Worker
## 1247 Student
## 1248 Worker
## 1249 Worker
## 1250 Student
## 1251 Worker
## 1252 Entrepreneur, self-employed, own-account worker
## 1253 Intermediate level employee (clerical, technical, admin.)
## 1254 Pensioner/retired
## 1255 Worker
## 1256 Entrepreneur, self-employed, own-account worker
## 1257 Unemployed
## 1258 Lower managerial/professional employee
## 1259 Pensioner/retired
## 1260 Higher managerial employee
## 1261 Pensioner/retired
## 1262 Student
## 1263 Pensioner/retired
## 1264 Intermediate level employee (clerical, technical, admin.)
## 1265 Entrepreneur, self-employed, own-account worker
## 1266 Intermediate level employee (clerical, technical, admin.)
## 1267 Worker
## 1268 Farmer, agricultural entrepreneur
## 1269 Student
## 1270 Pensioner/retired
## 1271 Pensioner/retired
## 1272 Lower managerial/professional employee
## 1273 Unemployed
## 1274 Pensioner/retired
## 1275 Pensioner/retired
## 1276 Higher managerial employee
## 1277 Pensioner/retired
## 1278 Pensioner/retired
## 1279 Lower managerial/professional employee
## 1280 Student
## 1281 Intermediate level employee (clerical, technical, admin.)
## 1282 Intermediate level employee (clerical, technical, admin.)
## 1283 Unemployed
## 1284 Lower managerial/professional employee
## 1285 Lower managerial/professional employee
## 1286 Intermediate level employee (clerical, technical, admin.)
## 1287 Lower managerial/professional employee
## 1288 Farmer, agricultural entrepreneur
## 1289 Entrepreneur, self-employed, own-account worker
## 1290 Intermediate level employee (clerical, technical, admin.)
## 1291 Worker
## 1292 Worker
## 1293 Lower managerial/professional employee
## 1294 Worker
## 1295 Worker
## 1296 Pensioner/retired
## 1297 Pensioner/retired
## 1298 Intermediate level employee (clerical, technical, admin.)
## 1299 Worker
## 1300 Pensioner/retired
## 1301 Pensioner/retired
## 1302 Student
## 1303 Entrepreneur, self-employed, own-account worker
## 1304 Pensioner/retired
## 1305 Worker
## 1306 Intermediate level employee (clerical, technical, admin.)
## 1307 Lower managerial/professional employee
## 1308 Pensioner/retired
## 1309 Entrepreneur, self-employed, own-account worker
## 1310 Lower managerial/professional employee
## 1311 Pensioner/retired
## 1312 Intermediate level employee (clerical, technical, admin.)
## 1313 Other
## 1314 Lower managerial/professional employee
## 1315 Pensioner/retired
## 1316 Higher managerial employee
## 1317 Intermediate level employee (clerical, technical, admin.)
## 1318 Worker
## 1319 Worker
## 1320 Intermediate level employee (clerical, technical, admin.)
## 1321 Worker
## 1322 Worker
## 1323 Intermediate level employee (clerical, technical, admin.)
## 1324 Unemployed
## 1325 Pensioner/retired
## 1326 Worker
## 1327 Intermediate level employee (clerical, technical, admin.)
## 1328 Worker
## 1329 Entrepreneur, self-employed, own-account worker
## 1330 Pensioner/retired
## 1331 Pensioner/retired
## 1332 Worker
## 1333 Worker
## 1334 Entrepreneur, self-employed, own-account worker
## 1335 Intermediate level employee (clerical, technical, admin.)
## 1336 Unemployed
## 1337 Worker
## 1338 Pensioner/retired
## 1339 Unemployed
## 1340 Unemployed
## 1341 Unemployed
## 1342 Pensioner/retired
## 1343 Worker
## 1344 Worker
## 1345 Intermediate level employee (clerical, technical, admin.)
## 1346 Worker
## 1347 Entrepreneur, self-employed, own-account worker
## 1348 Worker
## 1349 Worker
## 1350 Farmer, agricultural entrepreneur
## 1351 Intermediate level employee (clerical, technical, admin.)
## 1352 Farmer, agricultural entrepreneur
## 1353 Lower managerial/professional employee
## 1354 Worker
## 1355 Worker
## 1356 Intermediate level employee (clerical, technical, admin.)
## 1357 Worker
## 1358 Lower managerial/professional employee
## 1359 Worker
## 1360 Intermediate level employee (clerical, technical, admin.)
## 1361 Intermediate level employee (clerical, technical, admin.)
## 1362 Worker
## 1363 Worker
## 1364 Housewife/house husband, homemaker
## 1365 Worker
## 1366 Entrepreneur, self-employed, own-account worker
## 1367 Student
## 1368 Worker
## 1369 Student
## 1370 Worker
## 1371 Pensioner/retired
## 1372 Unemployed
## 1373 Worker
## 1374 Worker
## 1375 Worker
## 1376 Worker
## 1377 Intermediate level employee (clerical, technical, admin.)
## 1378 Entrepreneur, self-employed, own-account worker
## 1379 Worker
## 1380 Worker
## 1381 Worker
## 1382 Unemployed
## 1383 Intermediate level employee (clerical, technical, admin.)
## 1384 Worker
## 1385 Worker
## 1386 Pensioner/retired
## 1387 Worker
## 1388 Worker
## 1389 Worker
## 1390 Lower managerial/professional employee
## 1391 Worker
## 1392 Unemployed
## 1393 Worker
## 1394 Pensioner/retired
## 1395 Worker
## 1396 Worker
## 1397 Pensioner/retired
## 1398 Unemployed
## 1399 Worker
## 1400 Lower managerial/professional employee
## 1401 Pensioner/retired
## 1402 Pensioner/retired
## 1403 Pensioner/retired
## 1404 Pensioner/retired
## 1405 Worker
## 1406 Worker
## 1407 Worker
## 1408 Pensioner/retired
## 1409 Worker
## 1410 Worker
## 1411 Worker
## 1412 Worker
## 1413 Pensioner/retired
## 1414 Student
## 1415 Worker
## 1416 Entrepreneur, self-employed, own-account worker
## 1417 Entrepreneur, self-employed, own-account worker
## 1418 Student
## 1419 Pensioner/retired
## 1420 Entrepreneur, self-employed, own-account worker
## 1421 Entrepreneur, self-employed, own-account worker
## 1422 Pensioner/retired
## 1423 Lower managerial/professional employee
## 1424 Pensioner/retired
## 1425 Student
## 1426 Student
## 1427 Worker
## 1428 Pensioner/retired
## 1429 Worker
## 1430 Worker
## 1431 Intermediate level employee (clerical, technical, admin.)
## 1432 Lower managerial/professional employee
## 1433 Intermediate level employee (clerical, technical, admin.)
## 1434 Housewife/house husband, homemaker
## 1435 Lower managerial/professional employee
## 1436 Unemployed
## 1437 Worker
## 1438 Worker
## 1439 Worker
## 1440 Lower managerial/professional employee
## 1441 Entrepreneur, self-employed, own-account worker
## 1442 Worker
## 1443 Entrepreneur, self-employed, own-account worker
## 1444 Worker
## 1445 Student
## 1446 Worker
## 1447 Student
## 1448 Higher managerial employee
## 1449 Pensioner/retired
## 1450 Worker
## 1451 Lower managerial/professional employee
## 1452 Lower managerial/professional employee
## 1453 Worker
## 1454 Pensioner/retired
## 1455 Unemployed
## 1456 Worker
## 1457 Student
## 1458 Intermediate level employee (clerical, technical, admin.)
## 1459 Worker
## 1460 Pensioner/retired
## 1461 Worker
## 1462 Unemployed
## 1463 Intermediate level employee (clerical, technical, admin.)
## 1464 Worker
## 1465 Worker
## 1466 Other
## 1467 Lower managerial/professional employee
## 1468 Farmer, agricultural entrepreneur
## 1469 Student
## 1470 Pensioner/retired
## 1471 Intermediate level employee (clerical, technical, admin.)
## 1472 Student
## 1473 Pensioner/retired
## 1474 Worker
## 1475 Worker
## 1476 Student
## 1477 Student
## 1478 Worker
## 1479 Entrepreneur, self-employed, own-account worker
## 1480 Entrepreneur, self-employed, own-account worker
## 1481 Worker
## 1482 Intermediate level employee (clerical, technical, admin.)
## 1483 Intermediate level employee (clerical, technical, admin.)
## 1484 Other
## 1485 Lower managerial/professional employee
## 1486 Intermediate level employee (clerical, technical, admin.)
## 1487 Pensioner/retired
## 1488 Intermediate level employee (clerical, technical, admin.)
## 1489 Pensioner/retired
## 1490 Pensioner/retired
## 1491 Worker
## 1492 Pensioner/retired
## 1493 Pensioner/retired
## 1494 Pensioner/retired
## 1495 Unemployed
## 1496 Worker
## 1497 Other
## 1498 Worker
## 1499 Student
## 1500 Worker
## 1501 Unemployed
## 1502 Pensioner/retired
## 1503 Intermediate level employee (clerical, technical, admin.)
## 1504 Intermediate level employee (clerical, technical, admin.)
## 1505 Student
## 1506 Worker
## 1507 Lower managerial/professional employee
## 1508 Higher managerial employee
## 1509 Pensioner/retired
## 1510 Worker
## 1511 Lower managerial/professional employee
## 1512 Worker
## 1513 Intermediate level employee (clerical, technical, admin.)
## 1514 Student
## 1515 Worker
## 1516 Student
## 1517 Worker
## 1518 Worker
## 1519 Unemployed
## 1520 Lower managerial/professional employee
## 1521 Worker
## 1522 Lower managerial/professional employee
## 1523 Worker
## 1524 Worker
## 1525 Intermediate level employee (clerical, technical, admin.)
## 1526 Pensioner/retired
## 1527 Student
## 1528 Worker
## 1529 Pensioner/retired
## 1530 Worker
## 1531 Worker
## 1532 Pensioner/retired
## 1533 Lower managerial/professional employee
## 1534 Lower managerial/professional employee
## 1535 Lower managerial/professional employee
## 1536 Pensioner/retired
## 1537 Lower managerial/professional employee
## 1538 Intermediate level employee (clerical, technical, admin.)
## 1539 Intermediate level employee (clerical, technical, admin.)
## 1540 Worker
## 1541 Student
## 1542 Worker
## 1543 Farmer, agricultural entrepreneur
## 1544 Unemployed
## 1545 Entrepreneur, self-employed, own-account worker
## 1546 Entrepreneur, self-employed, own-account worker
## 1547 Lower managerial/professional employee
## 1548 Lower managerial/professional employee
## 1549 Worker
## 1550 Intermediate level employee (clerical, technical, admin.)
## 1551 Worker
## 1552 Entrepreneur, self-employed, own-account worker
## 1553 Entrepreneur, self-employed, own-account worker
## 1554 Pensioner/retired
## 1555 Entrepreneur, self-employed, own-account worker
## 1556 Unemployed
## 1557 Student
## 1558 Worker
## 1559 Worker
## 1560 Student
## 1561 Worker
## 1562 Entrepreneur, self-employed, own-account worker
## 1563 Student
## 1564 Other
## 1565 Worker
## 1566 Lower managerial/professional employee
## 1567 Student
## 1568 Lower managerial/professional employee
## 1569 Student
## 1570 Other
## 1571 Worker
## 1572 Worker
## 1573 Pensioner/retired
## 1574 Worker
## 1575 Student
## 1576 Student
## 1577 Worker
## 1578 Unemployed
## 1579 Student
## 1580 Student
## 1581 Pensioner/retired
## 1582 Pensioner/retired
## 1583 Pensioner/retired
## 1584 Intermediate level employee (clerical, technical, admin.)
## 1585 Worker
## 1586 Pensioner/retired
## 1587 Worker
## 1588 Worker
## 1589 Intermediate level employee (clerical, technical, admin.)
## 1590 Unemployed
## 1591 Intermediate level employee (clerical, technical, admin.)
## 1592 Intermediate level employee (clerical, technical, admin.)
## 1593 Unemployed
## 1594 Student
## 1595 Entrepreneur, self-employed, own-account worker
## 1596 Lower managerial/professional employee
## 1597 Intermediate level employee (clerical, technical, admin.)
## 1598 Lower managerial/professional employee
## 1599 Worker
## 1600 Worker
## 1601 Other
## 1602 Student
## 1603 Worker
## 1604 Student
## 1605 Student
## 1606 Worker
## 1607 Worker
## 1608 Student
## 1609 Worker
## 1610 Student
## 1611 Entrepreneur, self-employed, own-account worker
## 1612 Student
## 1613 Worker
## 1614 Lower managerial/professional employee
## 1615 Worker
## 1616 Student
## 1617 Student
## 1618 Student
## 1619 Worker
## 1620 Student
## 1621 Worker
## 1622 Student
## 1623 Worker
## 1624 Student
## 1625 Farmer, agricultural entrepreneur
## 1626 Worker
## 1627 Worker
## 1628 Student
## 1629 Intermediate level employee (clerical, technical, admin.)
## 1630 Student
## 1631 Student
## 1632 Worker
## 1633 Student
## 1634 Student
## 1635 Worker
## 1636 Student
## 1637 Worker
## 1638 Student
## 1639 Student
## 1640 Student
## 1641 Student
## 1642 Student
## 1643 Lower managerial/professional employee
## 1644 Student
## 1645 Other
## 1646 Lower managerial/professional employee
## 1647 Student
## 1648 Worker
## 1649 Student
## 1650 Intermediate level employee (clerical, technical, admin.)
## 1651 Worker
## 1652 Worker
## 1653 Lower managerial/professional employee
## 1654 Student
## 1655 Student
## 1656 Student
## 1657 Student
## 1658 Unemployed
## 1659 Unemployed
## 1660 Student
## 1661 Student
## 1662 Student
## 1663 Student
## 1664 Worker
## 1665 Student
## 1666 Student
## 1667 Student
## 1668 Student
## 1669 Higher managerial employee
## 1670 Student
## 1671 Student
## 1672 Lower managerial/professional employee
## 1673 Intermediate level employee (clerical, technical, admin.)
## 1674 Student
## 1675 Student
## 1676 Student
## 1677 Student
## 1678 Student
## 1679 Lower managerial/professional employee
## 1680 Lower managerial/professional employee
## 1681 Student
## 1682 Entrepreneur, self-employed, own-account worker
## 1683 Worker
## 1684 Intermediate level employee (clerical, technical, admin.)
## 1685 Student
## 1686 Student
## 1687 Student
## 1688 Student
## 1689 Lower managerial/professional employee
## 1690 Lower managerial/professional employee
## 1691 Intermediate level employee (clerical, technical, admin.)
## 1692 Student
## 1693 Intermediate level employee (clerical, technical, admin.)
## 1694 Student
## 1695 Worker
## 1696 Student
## 1697 Higher managerial employee
## 1698 Intermediate level employee (clerical, technical, admin.)
## 1699 Worker
## 1700 Higher managerial employee
## 1701 Lower managerial/professional employee
## 1702 Student
## 1703 Worker
## 1704 Student
## 1705 Student
## 1706 Entrepreneur, self-employed, own-account worker
## 1707 Lower managerial/professional employee
## 1708 Student
## 1709 Pensioner/retired
## 1710 Pensioner/retired
## 1711 Student
## 1712 Worker
## 1713 Pensioner/retired
## 1714 Intermediate level employee (clerical, technical, admin.)
## 1715 Worker
## 1716 Lower managerial/professional employee
## 1717 Pensioner/retired
## 1718 Intermediate level employee (clerical, technical, admin.)
## 1719 Unemployed
## 1720 Worker
## 1721 Lower managerial/professional employee
## 1722 Student
## 1723 Student
## 1724 Student
## 1725 Intermediate level employee (clerical, technical, admin.)
## 1726 Worker
## 1727 Student
## 1728 Student
## 1729 Intermediate level employee (clerical, technical, admin.)
## 1730 Worker
## 1731 Student
## 1732 Worker
## 1733 Worker
## 1734 Worker
## 1735 Worker
## 1736 Intermediate level employee (clerical, technical, admin.)
## 1737 Pensioner/retired
## 1738 Entrepreneur, self-employed, own-account worker
## 1739 Student
## 1740 Worker
## 1741 Student
## 1742 Worker
## 1743 Pensioner/retired
## 1744 Worker
## 1745 Student
## 1746 Lower managerial/professional employee
## 1747 Student
## 1748 Lower managerial/professional employee
## 1749 Student
## 1750 Entrepreneur, self-employed, own-account worker
## 1751 Worker
## 1752 Intermediate level employee (clerical, technical, admin.)
## 1753 Student
## 1754 Intermediate level employee (clerical, technical, admin.)
## 1755 Other
## 1756 Student
## 1757 Lower managerial/professional employee
## 1758 Intermediate level employee (clerical, technical, admin.)
## 1759 Student
## 1760 Worker
## 1761 Worker
## 1762 Worker
## 1763 Worker
## 1764 Worker
## 1765 Student
## 1766 Student
## 1767 Worker
## 1768 Housewife/house husband, homemaker
## 1769 Worker
## 1770 Worker
## 1771 Entrepreneur, self-employed, own-account worker
## 1772 Unemployed
## 1773 Intermediate level employee (clerical, technical, admin.)
## 1774 Student
## 1775 Student
## 1776 Student
## 1777 Intermediate level employee (clerical, technical, admin.)
## 1778 Student
## 1779 Student
## 1780 Student
## 1781 Student
## 1782 Student
## 1783 Lower managerial/professional employee
## 1784 Student
## 1785 Student
## 1786 Intermediate level employee (clerical, technical, admin.)
## 1787 Intermediate level employee (clerical, technical, admin.)
## 1788 Student
## 1789 Student
## 1790 Student
## 1791 Student
## 1792 Student
## 1793 Student
## 1794 Student
## 1795 Lower managerial/professional employee
## 1796 Student
## 1797 Student
## 1798 Farmer, agricultural entrepreneur
## 1799 Student
## 1800 Student
## 1801 Student
## 1802 Worker
## 1803 Worker
## 1804 Pensioner/retired
## 1805 Student
## 1806 Student
## 1807 Student
## 1808 Worker
## 1809 Worker
## 1810 Intermediate level employee (clerical, technical, admin.)
## 1811 Student
## 1812 Worker
## 1813 Lower managerial/professional employee
## 1814 Worker
## 1815 Worker
## 1816 Worker
## 1817 Lower managerial/professional employee
## 1818 Student
## 1819 Worker
## 1820 Lower managerial/professional employee
## 1821 Student
## 1822 Lower managerial/professional employee
## 1823 Student
## 1824 Higher managerial employee
## 1825 Intermediate level employee (clerical, technical, admin.)
## 1826 Student
## 1827 Worker
## 1828 Worker
## 1829 Student
## 1830 Student
## 1831 Lower managerial/professional employee
## 1832 Student
## 1833 Student
## 1834 Student
## 1835 Student
## 1836 Other
## 1837 Worker
## 1838 Worker
## 1839 Student
## 1840 Student
## 1841 Worker
## 1842 Intermediate level employee (clerical, technical, admin.)
## 1843 Student
## 1844 Worker
## 1845 Lower managerial/professional employee
## 1846 Student
## 1847 Worker
## 1848 Intermediate level employee (clerical, technical, admin.)
## 1849 Lower managerial/professional employee
## 1850 Worker
## 1851 Student
## 1852 Student
## 1853 Student
## 1854 Worker
## 1855 Worker
## 1856 Student
## 1857 Student
## 1858 Student
## 1859 Housewife/house husband, homemaker
## 1860 Intermediate level employee (clerical, technical, admin.)
## 1861 Student
## 1862 Unemployed
## 1863 Intermediate level employee (clerical, technical, admin.)
## 1864 Worker
## 1865 Worker
## 1866 Intermediate level employee (clerical, technical, admin.)
## 1867 Student
## 1868 Student
## 1869 Worker
## 1870 Student
## 1871 Student
## 1872 Unemployed
## 1873 Student
## 1874 Student
## 1875 Intermediate level employee (clerical, technical, admin.)
## 1876 Worker
## 1877 Worker
## 1878 Intermediate level employee (clerical, technical, admin.)
## 1879 Intermediate level employee (clerical, technical, admin.)
## 1880 Worker
## 1881 Worker
## 1882 Entrepreneur, self-employed, own-account worker
## 1883 Intermediate level employee (clerical, technical, admin.)
## 1884 Student
## 1885 Student
## 1886 Unemployed
## 1887 Unemployed
## 1888 Student
## 1889 Worker
## 1890 Student
## 1891 Student
## 1892 Intermediate level employee (clerical, technical, admin.)
## 1893 Worker
## 1894 Worker
## 1895 Housewife/house husband, homemaker
## 1896 Worker
## 1897 Student
## 1898 Student
## 1899 Intermediate level employee (clerical, technical, admin.)
## 1900 Other
## 1901 Student
## 1902 Student
## 1903 Worker
## 1904 Farmer, agricultural entrepreneur
## 1905 Worker
## 1906 Student
## 1907 Student
## 1908 Student
## 1909 Intermediate level employee (clerical, technical, admin.)
## 1910 Student
## 1911 Worker
## 1912 Intermediate level employee (clerical, technical, admin.)
## 1913 Entrepreneur, self-employed, own-account worker
## 1914 Worker
## 1915 Intermediate level employee (clerical, technical, admin.)
## 1916 Entrepreneur, self-employed, own-account worker
## 1917 Worker
## 1918 Worker
## 1919 Student
## 1920 Worker
## 1921 Student
## 1922 Pensioner/retired
## 1923 Lower managerial/professional employee
## 1924 Lower managerial/professional employee
## 1925 Worker
## 1926 Worker
## 1927 Student
## 1928 Worker
## 1929 Student
## 1930 Student
## 1931 Lower managerial/professional employee
## 1932 Student
## 1933 Worker
## 1934 Student
## 1935 Worker
## 1936 Student
## 1937 Unemployed
## 1938 Pensioner/retired
## industry union_if
## 1 Private services No
## 2 Private services Yes
## 3 Public services No
## 4 Private services Yes
## 5 Industry, manufacturing, construction No
## 6 Industry, manufacturing, construction Yes
## 7 Industry, manufacturing, construction No
## 8 Industry, manufacturing, construction No
## 9 Public services No
## 10 Public services Yes
## 11 Private services Yes
## 12 Public services No
## 13 Industry, manufacturing, construction Yes
## 14 Public services Yes
## 15 Private services No
## 16 Industry, manufacturing, construction No
## 17 Public services No
## 18 Private services No
## 19 Private services Yes
## 20 Private services Yes
## 21 Public services Yes
## 22 Public services Yes
## 23 Public services Yes
## 24 Public services No
## 25 Private services Yes
## 26 Private services Yes
## 27 Private services No
## 28 Private services Yes
## 29 Public services No
## 30 Private services No
## 31 Private services No
## 32 Public services Yes
## 33 Industry, manufacturing, construction No
## 34 Public services Yes
## 35 Private services No
## 36 Industry, manufacturing, construction No
## 37 Private services No
## 38 Private services No
## 39 Private services No
## 40 Private services No
## 41 Industry, manufacturing, construction Yes
## 42 Industry, manufacturing, construction No
## 43 Public services Yes
## 44 Public services Yes
## 45 Private services No
## 46 Private services No
## 47 Private services Yes
## 48 Private services Yes
## 49 Industry, manufacturing, construction No
## 50 Private services Yes
## 51 Private services Yes
## 52 Industry, manufacturing, construction No
## 53 Public services Yes
## 54 Public services Yes
## 55 Industry, manufacturing, construction No
## 56 Private services Yes
## 57 Public services No
## 58 Industry, manufacturing, construction Yes
## 59 Private services No
## 60 Public services Yes
## 61 Public services Yes
## 62 Private services Yes
## 63 Private services No
## 64 Not in paid work No
## 65 Public services No
## 66 Public services Yes
## 67 Public services No
## 68 Public services Yes
## 69 Public services Yes
## 70 Private services No
## 71 Private services No
## 72 Private services No
## 73 Public services Yes
## 74 Private services Yes
## 75 Public services Yes
## 76 Industry, manufacturing, construction Yes
## 77 Private services No
## 78 Private services No
## 79 Public services No
## 80 Private services No
## 81 Private services No
## 82 Industry, manufacturing, construction No
## 83 Public services Yes
## 84 Public services Yes
## 85 Private services No
## 86 Private services No
## 87 Private services No
## 88 Public services No
## 89 Private services No
## 90 Private services No
## 91 Public services Yes
## 92 Private services Yes
## 93 Public services No
## 94 Public services No
## 95 Industry, manufacturing, construction Yes
## 96 Private services No
## 97 Public services Yes
## 98 Industry, manufacturing, construction Yes
## 99 Industry, manufacturing, construction No
## 100 Public services Yes
## 101 Public services Yes
## 102 Public services Yes
## 103 Public services No
## 104 Agriculture and forestry No
## 105 Industry, manufacturing, construction Yes
## 106 Private services No
## 107 Industry, manufacturing, construction Yes
## 108 Public services Yes
## 109 Not in paid work No
## 110 Industry, manufacturing, construction Yes
## 111 Private services Yes
## 112 Agriculture and forestry No
## 113 Public services Yes
## 114 Agriculture and forestry Yes
## 115 Industry, manufacturing, construction Yes
## 116 Private services No
## 117 Private services Yes
## 118 Industry, manufacturing, construction No
## 119 Agriculture and forestry No
## 120 Private services No
## 121 Industry, manufacturing, construction Yes
## 122 Private services Yes
## 123 Industry, manufacturing, construction Yes
## 124 Private services No
## 125 Public services Yes
## 126 Private services No
## 127 Private services Yes
## 128 Public services No
## 129 Industry, manufacturing, construction No
## 130 Agriculture and forestry No
## 131 Industry, manufacturing, construction Yes
## 132 Private services No
## 133 Public services Yes
## 134 Industry, manufacturing, construction No
## 135 Public services No
## 136 Private services Yes
## 137 Industry, manufacturing, construction No
## 138 Public services Yes
## 139 Public services Yes
## 140 Private services No
## 141 Private services No
## 142 Private services No
## 143 Industry, manufacturing, construction Yes
## 144 Private services Yes
## 145 Private services Yes
## 146 Private services No
## 147 Private services Yes
## 148 Industry, manufacturing, construction Yes
## 149 Public services No
## 150 Private services No
## 151 Public services No
## 152 Industry, manufacturing, construction Yes
## 153 Industry, manufacturing, construction Yes
## 154 Public services Yes
## 155 Private services No
## 156 Industry, manufacturing, construction No
## 157 Industry, manufacturing, construction No
## 158 Private services No
## 159 Public services No
## 160 Public services Yes
## 161 Private services Yes
## 162 Industry, manufacturing, construction No
## 163 Public services Yes
## 164 Public services Yes
## 165 Industry, manufacturing, construction No
## 166 Public services No
## 167 Public services Yes
## 168 Public services Yes
## 169 Private services No
## 170 Industry, manufacturing, construction Yes
## 171 Public services No
## 172 Public services Yes
## 173 Industry, manufacturing, construction Yes
## 174 Public services No
## 175 Industry, manufacturing, construction Yes
## 176 Private services No
## 177 Private services Yes
## 178 Private services No
## 179 Industry, manufacturing, construction Yes
## 180 Industry, manufacturing, construction No
## 181 Public services Yes
## 182 Public services No
## 183 Public services No
## 184 Industry, manufacturing, construction Yes
## 185 Public services Yes
## 186 Private services No
## 187 Not in paid work Yes
## 188 Agriculture and forestry Yes
## 189 Industry, manufacturing, construction No
## 190 Private services No
## 191 Public services No
## 192 Private services No
## 193 Public services Yes
## 194 Industry, manufacturing, construction Yes
## 195 Private services Yes
## 196 Public services Yes
## 197 Public services Yes
## 198 Public services No
## 199 Private services No
## 200 Private services Yes
## 201 Private services No
## 202 Public services Yes
## 203 Public services Yes
## 204 Public services Yes
## 205 Private services No
## 206 Public services Yes
## 207 Public services No
## 208 Public services Yes
## 209 Public services No
## 210 Public services No
## 211 Private services Yes
## 212 Industry, manufacturing, construction Yes
## 213 Public services Yes
## 214 Private services Yes
## 215 Private services Yes
## 216 Industry, manufacturing, construction No
## 217 Not in paid work No
## 218 Public services No
## 219 Agriculture and forestry Yes
## 220 Public services No
## 221 Private services Yes
## 222 Private services No
## 223 Industry, manufacturing, construction Yes
## 224 Private services No
## 225 Public services No
## 226 Public services Yes
## 227 Industry, manufacturing, construction Yes
## 228 Public services No
## 229 Private services No
## 230 Industry, manufacturing, construction Yes
## 231 Industry, manufacturing, construction Yes
## 232 Public services No
## 233 Private services No
## 234 Public services No
## 235 Not in paid work No
## 236 Public services Yes
## 237 Public services Yes
## 238 Public services Yes
## 239 Public services No
## 240 Public services Yes
## 241 Private services No
## 242 Private services No
## 243 Public services Yes
## 244 Industry, manufacturing, construction No
## 245 Private services No
## 246 Private services No
## 247 Industry, manufacturing, construction No
## 248 Industry, manufacturing, construction Yes
## 249 Public services Yes
## 250 Agriculture and forestry Yes
## 251 Private services No
## 252 Private services No
## 253 Public services No
## 254 Public services No
## 255 Public services No
## 256 Industry, manufacturing, construction No
## 257 Public services No
## 258 Public services No
## 259 Private services Yes
## 260 Industry, manufacturing, construction Yes
## 261 Public services Yes
## 262 Public services No
## 263 Public services Yes
## 264 Industry, manufacturing, construction No
## 265 Industry, manufacturing, construction Yes
## 266 Public services Yes
## 267 Public services No
## 268 Public services Yes
## 269 Industry, manufacturing, construction No
## 270 Private services Yes
## 271 Private services No
## 272 Public services Yes
## 273 Public services No
## 274 Public services No
## 275 Not in paid work No
## 276 Public services No
## 277 Agriculture and forestry Yes
## 278 Public services Yes
## 279 Industry, manufacturing, construction Yes
## 280 Industry, manufacturing, construction Yes
## 281 Private services No
## 282 Public services No
## 283 Private services No
## 284 Public services No
## 285 Industry, manufacturing, construction Yes
## 286 Public services No
## 287 Public services No
## 288 Private services No
## 289 Public services No
## 290 Public services Yes
## 291 Public services Yes
## 292 Public services No
## 293 Industry, manufacturing, construction No
## 294 Private services No
## 295 Public services Yes
## 296 Not in paid work Yes
## 297 Industry, manufacturing, construction Yes
## 298 Private services Yes
## 299 Private services Yes
## 300 Public services Yes
## 301 Private services No
## 302 Public services No
## 303 Private services Yes
## 304 Public services Yes
## 305 Public services No
## 306 Industry, manufacturing, construction Yes
## 307 Public services No
## 308 Not in paid work No
## 309 Industry, manufacturing, construction Yes
## 310 Industry, manufacturing, construction Yes
## 311 Industry, manufacturing, construction Yes
## 312 Public services Yes
## 313 Industry, manufacturing, construction Yes
## 314 Private services No
## 315 Public services No
## 316 Private services No
## 317 Industry, manufacturing, construction Yes
## 318 Private services No
## 319 Private services Yes
## 320 Private services Yes
## 321 Industry, manufacturing, construction No
## 322 Public services Yes
## 323 Industry, manufacturing, construction No
## 324 Private services Yes
## 325 Private services No
## 326 Private services No
## 327 Private services Yes
## 328 Public services No
## 329 Public services No
## 330 Private services Yes
## 331 Private services No
## 332 Private services Yes
## 333 Public services No
## 334 Public services No
## 335 Not in paid work Yes
## 336 Private services Yes
## 337 Private services No
## 338 Industry, manufacturing, construction No
## 339 Industry, manufacturing, construction Yes
## 340 Private services Yes
## 341 Public services No
## 342 Industry, manufacturing, construction No
## 343 Agriculture and forestry Yes
## 344 Industry, manufacturing, construction Yes
## 345 Private services No
## 346 Public services No
## 347 Not in paid work No
## 348 Private services No
## 349 Industry, manufacturing, construction Yes
## 350 Agriculture and forestry No
## 351 Public services No
## 352 Public services No
## 353 Public services Yes
## 354 Industry, manufacturing, construction Yes
## 355 Private services Yes
## 356 Public services No
## 357 Private services Yes
## 358 Public services No
## 359 Public services No
## 360 Industry, manufacturing, construction No
## 361 Public services Yes
## 362 Agriculture and forestry Yes
## 363 Public services Yes
## 364 Industry, manufacturing, construction No
## 365 Agriculture and forestry Yes
## 366 Agriculture and forestry Yes
## 367 Industry, manufacturing, construction Yes
## 368 Public services Yes
## 369 Industry, manufacturing, construction Yes
## 370 Public services No
## 371 Public services No
## 372 Public services No
## 373 Public services Yes
## 374 Public services No
## 375 Private services No
## 376 Not in paid work No
## 377 Public services Yes
## 378 Public services Yes
## 379 Industry, manufacturing, construction No
## 380 Private services No
## 381 Private services No
## 382 Private services No
## 383 Public services No
## 384 Agriculture and forestry Yes
## 385 Public services Yes
## 386 Agriculture and forestry No
## 387 Public services No
## 388 Public services No
## 389 Private services No
## 390 Public services No
## 391 Public services No
## 392 Private services No
## 393 Public services Yes
## 394 Public services Yes
## 395 Industry, manufacturing, construction Yes
## 396 Public services No
## 397 Industry, manufacturing, construction No
## 398 Public services Yes
## 399 Public services No
## 400 Public services Yes
## 401 Industry, manufacturing, construction No
## 402 Public services Yes
## 403 Public services Yes
## 404 Industry, manufacturing, construction No
## 405 Private services Yes
## 406 Public services Yes
## 407 Industry, manufacturing, construction Yes
## 408 Private services No
## 409 Industry, manufacturing, construction Yes
## 410 Public services No
## 411 Public services Yes
## 412 Not in paid work No
## 413 Public services Yes
## 414 Agriculture and forestry Yes
## 415 Public services Yes
## 416 Industry, manufacturing, construction Yes
## 417 Private services Yes
## 418 Public services No
## 419 Public services No
## 420 Public services Yes
## 421 Public services Yes
## 422 Private services No
## 423 Public services No
## 424 Private services Yes
## 425 Public services No
## 426 Private services Yes
## 427 Public services No
## 428 Private services Yes
## 429 Public services Yes
## 430 Industry, manufacturing, construction Yes
## 431 Public services Yes
## 432 Private services No
## 433 Public services Yes
## 434 Public services No
## 435 Industry, manufacturing, construction Yes
## 436 Industry, manufacturing, construction No
## 437 Public services No
## 438 Private services Yes
## 439 Public services No
## 440 Private services No
## 441 Private services Yes
## 442 Public services Yes
## 443 Industry, manufacturing, construction Yes
## 444 Industry, manufacturing, construction Yes
## 445 Not in paid work No
## 446 Private services No
## 447 Private services Yes
## 448 Industry, manufacturing, construction No
## 449 Public services No
## 450 Public services Yes
## 451 Private services No
## 452 Public services Yes
## 453 Industry, manufacturing, construction No
## 454 Public services Yes
## 455 Private services No
## 456 Private services Yes
## 457 Private services No
## 458 Private services No
## 459 Public services No
## 460 Private services No
## 461 Private services No
## 462 Public services No
## 463 Industry, manufacturing, construction Yes
## 464 Public services No
## 465 Public services Yes
## 466 Private services Yes
## 467 Public services No
## 468 Public services No
## 469 Private services No
## 470 Industry, manufacturing, construction Yes
## 471 Private services Yes
## 472 Public services No
## 473 Public services Yes
## 474 Private services No
## 475 Public services Yes
## 476 Private services Yes
## 477 Public services No
## 478 Public services No
## 479 Private services No
## 480 Public services Yes
## 481 Public services No
## 482 Public services Yes
## 483 Industry, manufacturing, construction No
## 484 Public services Yes
## 485 Private services Yes
## 486 Private services No
## 487 Industry, manufacturing, construction Yes
## 488 Public services Yes
## 489 Public services No
## 490 Public services No
## 491 Public services Yes
## 492 Private services No
## 493 Public services No
## 494 Private services No
## 495 Public services No
## 496 Public services Yes
## 497 Private services Yes
## 498 Public services No
## 499 Public services Yes
## 500 Public services No
## 501 Public services No
## 502 Public services Yes
## 503 Private services No
## 504 Private services No
## 505 Public services No
## 506 Private services No
## 507 Public services No
## 508 Private services No
## 509 Private services Yes
## 510 Public services No
## 511 Public services No
## 512 Industry, manufacturing, construction No
## 513 Private services No
## 514 Public services No
## 515 Public services Yes
## 516 Public services No
## 517 Private services No
## 518 Public services Yes
## 519 Public services No
## 520 Public services No
## 521 Private services Yes
## 522 Private services No
## 523 Public services Yes
## 524 Public services Yes
## 525 Private services No
## 526 Industry, manufacturing, construction Yes
## 527 Public services No
## 528 Industry, manufacturing, construction No
## 529 Agriculture and forestry Yes
## 530 Industry, manufacturing, construction Yes
## 531 Public services No
## 532 Industry, manufacturing, construction Yes
## 533 Industry, manufacturing, construction No
## 534 Public services Yes
## 535 Private services Yes
## 536 Private services Yes
## 537 Private services No
## 538 Public services Yes
## 539 Private services No
## 540 Public services No
## 541 Public services No
## 542 Public services Yes
## 543 Private services No
## 544 Industry, manufacturing, construction No
## 545 Public services Yes
## 546 Industry, manufacturing, construction Yes
## 547 Industry, manufacturing, construction Yes
## 548 Public services No
## 549 Private services Yes
## 550 Private services No
## 551 Agriculture and forestry Yes
## 552 Public services Yes
## 553 Industry, manufacturing, construction Yes
## 554 Private services Yes
## 555 Private services No
## 556 Public services Yes
## 557 Industry, manufacturing, construction No
## 558 Public services Yes
## 559 Agriculture and forestry Yes
## 560 Industry, manufacturing, construction Yes
## 561 Industry, manufacturing, construction No
## 562 Industry, manufacturing, construction No
## 563 Agriculture and forestry Yes
## 564 Public services Yes
## 565 Agriculture and forestry No
## 566 Industry, manufacturing, construction Yes
## 567 Public services No
## 568 Public services Yes
## 569 Public services No
## 570 Public services Yes
## 571 Public services Yes
## 572 Agriculture and forestry Yes
## 573 Public services Yes
## 574 Not in paid work No
## 575 Agriculture and forestry Yes
## 576 Private services No
## 577 Private services No
## 578 Private services Yes
## 579 Private services No
## 580 Agriculture and forestry Yes
## 581 Industry, manufacturing, construction No
## 582 Public services Yes
## 583 Industry, manufacturing, construction No
## 584 Private services No
## 585 Private services No
## 586 Public services No
## 587 Private services No
## 588 Agriculture and forestry Yes
## 589 Industry, manufacturing, construction No
## 590 Industry, manufacturing, construction No
## 591 Industry, manufacturing, construction Yes
## 592 Public services No
## 593 Agriculture and forestry No
## 594 Industry, manufacturing, construction No
## 595 Agriculture and forestry No
## 596 Agriculture and forestry Yes
## 597 Private services No
## 598 Private services No
## 599 Public services No
## 600 Private services No
## 601 Agriculture and forestry Yes
## 602 Industry, manufacturing, construction Yes
## 603 Public services No
## 604 Private services No
## 605 Public services Yes
## 606 Private services No
## 607 Public services No
## 608 Industry, manufacturing, construction Yes
## 609 Industry, manufacturing, construction Yes
## 610 Public services No
## 611 Public services Yes
## 612 Not in paid work No
## 613 Industry, manufacturing, construction Yes
## 614 Private services Yes
## 615 Industry, manufacturing, construction Yes
## 616 Public services Yes
## 617 Public services Yes
## 618 Private services Yes
## 619 Public services Yes
## 620 Public services No
## 621 Private services No
## 622 Private services No
## 623 Public services Yes
## 624 Private services Yes
## 625 Public services No
## 626 Private services No
## 627 Public services No
## 628 Private services No
## 629 Private services Yes
## 630 Private services No
## 631 Private services No
## 632 Not in paid work No
## 633 Private services No
## 634 Public services No
## 635 Private services No
## 636 Agriculture and forestry No
## 637 Public services No
## 638 Industry, manufacturing, construction Yes
## 639 Private services Yes
## 640 Private services No
## 641 Public services Yes
## 642 Public services No
## 643 Private services No
## 644 Private services No
## 645 Public services Yes
## 646 Not in paid work No
## 647 Public services Yes
## 648 Public services No
## 649 Public services No
## 650 Public services Yes
## 651 Private services No
## 652 Industry, manufacturing, construction Yes
## 653 Public services No
## 654 Private services No
## 655 Industry, manufacturing, construction Yes
## 656 Private services No
## 657 Public services Yes
## 658 Public services Yes
## 659 Industry, manufacturing, construction Yes
## 660 Public services Yes
## 661 Public services No
## 662 Industry, manufacturing, construction No
## 663 Industry, manufacturing, construction No
## 664 Industry, manufacturing, construction No
## 665 Private services No
## 666 Public services Yes
## 667 Private services No
## 668 Industry, manufacturing, construction Yes
## 669 Private services Yes
## 670 Public services Yes
## 671 Public services No
## 672 Private services Yes
## 673 Industry, manufacturing, construction Yes
## 674 Public services Yes
## 675 Private services Yes
## 676 Agriculture and forestry No
## 677 Private services Yes
## 678 Private services No
## 679 Agriculture and forestry Yes
## 680 Private services Yes
## 681 Private services Yes
## 682 Industry, manufacturing, construction No
## 683 Public services Yes
## 684 Public services No
## 685 Private services No
## 686 Private services No
## 687 Private services No
## 688 Private services Yes
## 689 Industry, manufacturing, construction Yes
## 690 Agriculture and forestry Yes
## 691 Public services Yes
## 692 Industry, manufacturing, construction No
## 693 Private services Yes
## 694 Private services No
## 695 Agriculture and forestry No
## 696 Private services Yes
## 697 Private services No
## 698 Public services No
## 699 Private services No
## 700 Private services No
## 701 Private services No
## 702 Industry, manufacturing, construction Yes
## 703 Private services No
## 704 Private services Yes
## 705 Industry, manufacturing, construction Yes
## 706 Agriculture and forestry Yes
## 707 Public services Yes
## 708 Public services Yes
## 709 Public services Yes
## 710 Industry, manufacturing, construction No
## 711 Private services Yes
## 712 Public services Yes
## 713 Agriculture and forestry Yes
## 714 Private services No
## 715 Private services No
## 716 Agriculture and forestry Yes
## 717 Private services No
## 718 Private services Yes
## 719 Public services No
## 720 Public services Yes
## 721 Public services No
## 722 Private services No
## 723 Industry, manufacturing, construction Yes
## 724 Public services Yes
## 725 Industry, manufacturing, construction Yes
## 726 Private services No
## 727 Public services Yes
## 728 Public services No
## 729 Private services No
## 730 Industry, manufacturing, construction No
## 731 Private services No
## 732 Public services No
## 733 Private services Yes
## 734 Agriculture and forestry Yes
## 735 Public services Yes
## 736 Private services Yes
## 737 Public services No
## 738 Industry, manufacturing, construction No
## 739 Public services Yes
## 740 Private services No
## 741 Public services No
## 742 Public services No
## 743 Private services Yes
## 744 Industry, manufacturing, construction No
## 745 Private services No
## 746 Public services No
## 747 Private services No
## 748 Industry, manufacturing, construction No
## 749 Industry, manufacturing, construction Yes
## 750 Private services No
## 751 Private services No
## 752 Public services Yes
## 753 Private services Yes
## 754 Public services Yes
## 755 Private services No
## 756 Private services Yes
## 757 Public services No
## 758 Public services No
## 759 Private services No
## 760 Public services Yes
## 761 Industry, manufacturing, construction Yes
## 762 Industry, manufacturing, construction Yes
## 763 Private services Yes
## 764 Public services Yes
## 765 Industry, manufacturing, construction Yes
## 766 Public services Yes
## 767 Industry, manufacturing, construction Yes
## 768 Private services No
## 769 Not in paid work No
## 770 Agriculture and forestry No
## 771 Industry, manufacturing, construction Yes
## 772 Industry, manufacturing, construction No
## 773 Private services No
## 774 Public services Yes
## 775 Private services No
## 776 Public services Yes
## 777 Public services Yes
## 778 Private services Yes
## 779 Private services Yes
## 780 Public services No
## 781 Agriculture and forestry No
## 782 Public services No
## 783 Private services Yes
## 784 Public services Yes
## 785 Public services Yes
## 786 Private services Yes
## 787 Public services No
## 788 Public services Yes
## 789 Public services No
## 790 Private services No
## 791 Not in paid work No
## 792 Agriculture and forestry Yes
## 793 Public services No
## 794 Public services No
## 795 Industry, manufacturing, construction Yes
## 796 Industry, manufacturing, construction Yes
## 797 Public services Yes
## 798 Private services No
## 799 Public services Yes
## 800 Industry, manufacturing, construction No
## 801 Industry, manufacturing, construction No
## 802 Public services Yes
## 803 Public services Yes
## 804 Industry, manufacturing, construction Yes
## 805 Public services No
## 806 Private services No
## 807 Public services No
## 808 Private services Yes
## 809 Public services No
## 810 Not in paid work No
## 811 Private services No
## 812 Public services No
## 813 Agriculture and forestry Yes
## 814 Public services No
## 815 Industry, manufacturing, construction No
## 816 Public services Yes
## 817 Public services No
## 818 Industry, manufacturing, construction No
## 819 Industry, manufacturing, construction No
## 820 Public services Yes
## 821 Public services No
## 822 Industry, manufacturing, construction No
## 823 Agriculture and forestry No
## 824 Public services No
## 825 Private services No
## 826 Private services No
## 827 Private services No
## 828 Public services No
## 829 Public services Yes
## 830 Private services No
## 831 Public services Yes
## 832 Private services No
## 833 Industry, manufacturing, construction Yes
## 834 Private services No
## 835 Private services Yes
## 836 Industry, manufacturing, construction No
## 837 Industry, manufacturing, construction Yes
## 838 Industry, manufacturing, construction No
## 839 Public services Yes
## 840 Industry, manufacturing, construction No
## 841 Public services No
## 842 Private services No
## 843 Public services Yes
## 844 Industry, manufacturing, construction Yes
## 845 Public services Yes
## 846 Agriculture and forestry No
## 847 Public services No
## 848 Public services No
## 849 Private services No
## 850 Industry, manufacturing, construction Yes
## 851 Public services No
## 852 Public services Yes
## 853 Industry, manufacturing, construction Yes
## 854 Private services No
## 855 Private services No
## 856 Public services No
## 857 Public services No
## 858 Industry, manufacturing, construction Yes
## 859 Public services No
## 860 Public services Yes
## 861 Agriculture and forestry Yes
## 862 Industry, manufacturing, construction Yes
## 863 Public services Yes
## 864 Public services Yes
## 865 Industry, manufacturing, construction Yes
## 866 Agriculture and forestry No
## 867 Private services Yes
## 868 Public services No
## 869 Industry, manufacturing, construction No
## 870 Private services No
## 871 Private services Yes
## 872 Public services Yes
## 873 Industry, manufacturing, construction Yes
## 874 Public services No
## 875 Public services No
## 876 Private services Yes
## 877 Public services Yes
## 878 Private services No
## 879 Private services No
## 880 Public services Yes
## 881 Industry, manufacturing, construction Yes
## 882 Public services No
## 883 Private services No
## 884 Private services No
## 885 Private services No
## 886 Industry, manufacturing, construction Yes
## 887 Public services No
## 888 Public services Yes
## 889 Industry, manufacturing, construction No
## 890 Private services No
## 891 Industry, manufacturing, construction No
## 892 Private services No
## 893 Industry, manufacturing, construction Yes
## 894 Public services Yes
## 895 Public services Yes
## 896 Private services Yes
## 897 Public services No
## 898 Industry, manufacturing, construction No
## 899 Public services Yes
## 900 Private services No
## 901 Private services No
## 902 Not in paid work No
## 903 Private services No
## 904 Industry, manufacturing, construction No
## 905 Public services Yes
## 906 Industry, manufacturing, construction Yes
## 907 Public services Yes
## 908 Public services Yes
## 909 Public services No
## 910 Not in paid work No
## 911 Private services No
## 912 Industry, manufacturing, construction No
## 913 Industry, manufacturing, construction No
## 914 Public services Yes
## 915 Public services No
## 916 Private services Yes
## 917 Industry, manufacturing, construction Yes
## 918 Private services No
## 919 Private services No
## 920 Private services No
## 921 Public services Yes
## 922 Public services No
## 923 Private services Yes
## 924 Public services Yes
## 925 Private services No
## 926 Industry, manufacturing, construction No
## 927 Private services No
## 928 Agriculture and forestry Yes
## 929 Private services No
## 930 Industry, manufacturing, construction No
## 931 Private services No
## 932 Public services No
## 933 Private services No
## 934 Public services No
## 935 Private services No
## 936 Public services Yes
## 937 Private services No
## 938 Public services Yes
## 939 Public services No
## 940 Industry, manufacturing, construction No
## 941 Public services No
## 942 Private services Yes
## 943 Public services Yes
## 944 Private services No
## 945 Private services Yes
## 946 Private services Yes
## 947 Industry, manufacturing, construction No
## 948 Industry, manufacturing, construction No
## 949 Private services Yes
## 950 Not in paid work No
## 951 Public services Yes
## 952 Private services Yes
## 953 Private services No
## 954 Private services Yes
## 955 Private services No
## 956 Private services Yes
## 957 Public services No
## 958 Public services Yes
## 959 Private services Yes
## 960 Private services Yes
## 961 Public services No
## 962 Private services No
## 963 Private services Yes
## 964 Private services No
## 965 Private services No
## 966 Private services Yes
## 967 Industry, manufacturing, construction No
## 968 Public services Yes
## 969 Industry, manufacturing, construction Yes
## 970 Public services No
## 971 Public services Yes
## 972 Private services No
## 973 Public services Yes
## 974 Private services No
## 975 Public services Yes
## 976 Private services No
## 977 Private services No
## 978 Private services No
## 979 Public services No
## 980 Private services No
## 981 Private services No
## 982 Industry, manufacturing, construction No
## 983 Private services No
## 984 Industry, manufacturing, construction Yes
## 985 Public services No
## 986 Private services Yes
## 987 Private services No
## 988 Public services No
## 989 Public services No
## 990 Private services Yes
## 991 Industry, manufacturing, construction Yes
## 992 Public services No
## 993 Public services No
## 994 Public services Yes
## 995 Public services No
## 996 Public services No
## 997 Public services No
## 998 Industry, manufacturing, construction No
## 999 Private services No
## 1000 Public services Yes
## 1001 Private services Yes
## 1002 Public services Yes
## 1003 Industry, manufacturing, construction Yes
## 1004 Public services Yes
## 1005 Public services Yes
## 1006 Private services No
## 1007 Private services No
## 1008 Industry, manufacturing, construction No
## 1009 Agriculture and forestry Yes
## 1010 Public services No
## 1011 Private services Yes
## 1012 Public services No
## 1013 Not in paid work No
## 1014 Not in paid work Yes
## 1015 Industry, manufacturing, construction Yes
## 1016 Private services Yes
## 1017 Public services Yes
## 1018 Industry, manufacturing, construction Yes
## 1019 Private services No
## 1020 Public services No
## 1021 Public services No
## 1022 Public services Yes
## 1023 Public services No
## 1024 Public services Yes
## 1025 Private services Yes
## 1026 Public services Yes
## 1027 Industry, manufacturing, construction No
## 1028 Public services Yes
## 1029 Public services Yes
## 1030 Industry, manufacturing, construction No
## 1031 Public services Yes
## 1032 Not in paid work No
## 1033 Public services No
## 1034 Private services No
## 1035 Public services Yes
## 1036 Public services Yes
## 1037 Public services Yes
## 1038 Industry, manufacturing, construction Yes
## 1039 Public services No
## 1040 Private services No
## 1041 Agriculture and forestry No
## 1042 Public services Yes
## 1043 Public services Yes
## 1044 Industry, manufacturing, construction Yes
## 1045 Industry, manufacturing, construction Yes
## 1046 Public services No
## 1047 Public services Yes
## 1048 Industry, manufacturing, construction No
## 1049 Public services Yes
## 1050 Public services No
## 1051 Industry, manufacturing, construction Yes
## 1052 Industry, manufacturing, construction No
## 1053 Private services No
## 1054 Private services No
## 1055 Public services No
## 1056 Public services Yes
## 1057 Industry, manufacturing, construction Yes
## 1058 Public services No
## 1059 Public services Yes
## 1060 Industry, manufacturing, construction Yes
## 1061 Public services Yes
## 1062 Public services No
## 1063 Industry, manufacturing, construction Yes
## 1064 Private services No
## 1065 Private services No
## 1066 Private services No
## 1067 Private services No
## 1068 Industry, manufacturing, construction Yes
## 1069 Public services Yes
## 1070 Agriculture and forestry No
## 1071 Not in paid work No
## 1072 Public services No
## 1073 Private services No
## 1074 Private services No
## 1075 Private services No
## 1076 Industry, manufacturing, construction No
## 1077 Private services No
## 1078 Private services Yes
## 1079 Private services Yes
## 1080 Public services Yes
## 1081 Private services No
## 1082 Private services No
## 1083 Private services Yes
## 1084 Industry, manufacturing, construction Yes
## 1085 Private services No
## 1086 Public services No
## 1087 Public services No
## 1088 Private services No
## 1089 Industry, manufacturing, construction No
## 1090 Public services No
## 1091 Agriculture and forestry Yes
## 1092 Private services Yes
## 1093 Public services Yes
## 1094 Private services Yes
## 1095 Public services Yes
## 1096 Private services No
## 1097 Not in paid work No
## 1098 Industry, manufacturing, construction Yes
## 1099 Private services No
## 1100 Private services Yes
## 1101 Private services Yes
## 1102 Private services No
## 1103 Private services No
## 1104 Industry, manufacturing, construction Yes
## 1105 Public services No
## 1106 Private services Yes
## 1107 Private services No
## 1108 Public services Yes
## 1109 Public services Yes
## 1110 Industry, manufacturing, construction Yes
## 1111 Private services No
## 1112 Private services No
## 1113 Public services No
## 1114 Private services Yes
## 1115 Industry, manufacturing, construction No
## 1116 Not in paid work No
## 1117 Industry, manufacturing, construction Yes
## 1118 Industry, manufacturing, construction Yes
## 1119 Private services Yes
## 1120 Industry, manufacturing, construction Yes
## 1121 Public services No
## 1122 Private services No
## 1123 Industry, manufacturing, construction No
## 1124 Private services No
## 1125 Industry, manufacturing, construction No
## 1126 Public services Yes
## 1127 Agriculture and forestry Yes
## 1128 Private services No
## 1129 Industry, manufacturing, construction No
## 1130 Public services Yes
## 1131 Public services Yes
## 1132 Public services No
## 1133 Industry, manufacturing, construction Yes
## 1134 Public services No
## 1135 Private services No
## 1136 Private services No
## 1137 Industry, manufacturing, construction No
## 1138 Public services No
## 1139 Industry, manufacturing, construction Yes
## 1140 Private services No
## 1141 Public services No
## 1142 Private services Yes
## 1143 Private services No
## 1144 Public services No
## 1145 Industry, manufacturing, construction Yes
## 1146 Industry, manufacturing, construction Yes
## 1147 Public services No
## 1148 Public services No
## 1149 Agriculture and forestry Yes
## 1150 Public services No
## 1151 Industry, manufacturing, construction No
## 1152 Not in paid work No
## 1153 Private services No
## 1154 Private services No
## 1155 Private services No
## 1156 Private services No
## 1157 Public services Yes
## 1158 Agriculture and forestry Yes
## 1159 Industry, manufacturing, construction No
## 1160 Public services Yes
## 1161 Public services Yes
## 1162 Private services No
## 1163 Public services No
## 1164 Public services Yes
## 1165 Public services No
## 1166 Private services No
## 1167 Public services No
## 1168 Public services No
## 1169 Private services No
## 1170 Public services Yes
## 1171 Public services Yes
## 1172 Private services Yes
## 1173 Industry, manufacturing, construction Yes
## 1174 Industry, manufacturing, construction Yes
## 1175 Agriculture and forestry No
## 1176 Not in paid work Yes
## 1177 Industry, manufacturing, construction No
## 1178 Public services Yes
## 1179 Agriculture and forestry Yes
## 1180 Private services Yes
## 1181 Private services Yes
## 1182 Public services No
## 1183 Private services Yes
## 1184 Public services Yes
## 1185 Public services No
## 1186 Industry, manufacturing, construction No
## 1187 Industry, manufacturing, construction Yes
## 1188 Public services Yes
## 1189 Private services No
## 1190 Industry, manufacturing, construction No
## 1191 Public services No
## 1192 Agriculture and forestry No
## 1193 Public services No
## 1194 Industry, manufacturing, construction Yes
## 1195 Industry, manufacturing, construction No
## 1196 Public services No
## 1197 Industry, manufacturing, construction No
## 1198 Public services Yes
## 1199 Public services No
## 1200 Private services No
## 1201 Private services No
## 1202 Private services Yes
## 1203 Public services No
## 1204 Industry, manufacturing, construction No
## 1205 Public services No
## 1206 Public services Yes
## 1207 Private services No
## 1208 Public services Yes
## 1209 Agriculture and forestry No
## 1210 Private services Yes
## 1211 Industry, manufacturing, construction No
## 1212 Private services No
## 1213 Public services No
## 1214 Public services No
## 1215 Private services No
## 1216 Public services Yes
## 1217 Private services No
## 1218 Private services No
## 1219 Not in paid work Yes
## 1220 Private services No
## 1221 Not in paid work No
## 1222 Private services Yes
## 1223 Not in paid work No
## 1224 Public services No
## 1225 Public services Yes
## 1226 Private services No
## 1227 Private services Yes
## 1228 Private services No
## 1229 Private services Yes
## 1230 Public services Yes
## 1231 Public services No
## 1232 Private services No
## 1233 Public services Yes
## 1234 Public services No
## 1235 Public services No
## 1236 Public services Yes
## 1237 Public services Yes
## 1238 Private services No
## 1239 Private services Yes
## 1240 Private services No
## 1241 Private services No
## 1242 Public services No
## 1243 Private services No
## 1244 Private services No
## 1245 Not in paid work No
## 1246 Public services No
## 1247 Not in paid work Yes
## 1248 Public services Yes
## 1249 Public services Yes
## 1250 Public services No
## 1251 Private services No
## 1252 Private services No
## 1253 Public services Yes
## 1254 Private services Yes
## 1255 Public services No
## 1256 Private services No
## 1257 Private services Yes
## 1258 Public services Yes
## 1259 Industry, manufacturing, construction No
## 1260 Private services Yes
## 1261 Industry, manufacturing, construction No
## 1262 Private services No
## 1263 Not in paid work No
## 1264 Public services Yes
## 1265 Private services No
## 1266 Public services Yes
## 1267 Industry, manufacturing, construction No
## 1268 Agriculture and forestry Yes
## 1269 Private services Yes
## 1270 Public services No
## 1271 Industry, manufacturing, construction Yes
## 1272 Private services No
## 1273 Public services No
## 1274 Not in paid work No
## 1275 Public services No
## 1276 Public services No
## 1277 Industry, manufacturing, construction No
## 1278 Not in paid work No
## 1279 Private services Yes
## 1280 Private services No
## 1281 Industry, manufacturing, construction Yes
## 1282 Private services Yes
## 1283 Public services No
## 1284 Public services No
## 1285 Private services No
## 1286 Private services No
## 1287 Private services Yes
## 1288 Public services Yes
## 1289 Private services No
## 1290 Industry, manufacturing, construction Yes
## 1291 Private services Yes
## 1292 Public services No
## 1293 Public services No
## 1294 Public services Yes
## 1295 Public services No
## 1296 Public services No
## 1297 Public services No
## 1298 Public services Yes
## 1299 Industry, manufacturing, construction No
## 1300 Public services No
## 1301 Public services Yes
## 1302 Public services No
## 1303 Private services No
## 1304 Private services No
## 1305 Private services No
## 1306 Private services No
## 1307 Public services No
## 1308 Public services No
## 1309 Private services No
## 1310 Public services Yes
## 1311 Private services Yes
## 1312 Private services Yes
## 1313 Private services No
## 1314 Private services No
## 1315 Public services Yes
## 1316 Private services Yes
## 1317 Industry, manufacturing, construction Yes
## 1318 Private services Yes
## 1319 Public services Yes
## 1320 Private services No
## 1321 Industry, manufacturing, construction No
## 1322 Industry, manufacturing, construction Yes
## 1323 Private services Yes
## 1324 Not in paid work No
## 1325 Not in paid work No
## 1326 Industry, manufacturing, construction Yes
## 1327 Private services Yes
## 1328 Private services No
## 1329 Private services No
## 1330 Public services No
## 1331 Private services No
## 1332 Public services Yes
## 1333 Industry, manufacturing, construction Yes
## 1334 Public services No
## 1335 Industry, manufacturing, construction Yes
## 1336 Public services No
## 1337 Private services No
## 1338 Public services No
## 1339 Not in paid work No
## 1340 Not in paid work No
## 1341 Not in paid work No
## 1342 Public services Yes
## 1343 Public services No
## 1344 Private services No
## 1345 Public services No
## 1346 Industry, manufacturing, construction Yes
## 1347 Private services No
## 1348 Public services No
## 1349 Private services No
## 1350 Agriculture and forestry Yes
## 1351 Industry, manufacturing, construction No
## 1352 Agriculture and forestry No
## 1353 Industry, manufacturing, construction Yes
## 1354 Agriculture and forestry No
## 1355 Private services No
## 1356 Private services Yes
## 1357 Private services No
## 1358 Private services Yes
## 1359 Private services Yes
## 1360 Public services Yes
## 1361 Industry, manufacturing, construction Yes
## 1362 Industry, manufacturing, construction Yes
## 1363 Private services Yes
## 1364 Public services No
## 1365 Industry, manufacturing, construction Yes
## 1366 Private services No
## 1367 Industry, manufacturing, construction No
## 1368 Public services Yes
## 1369 Agriculture and forestry No
## 1370 Public services No
## 1371 Industry, manufacturing, construction No
## 1372 Not in paid work Yes
## 1373 Private services No
## 1374 Private services Yes
## 1375 Private services Yes
## 1376 Private services No
## 1377 Public services No
## 1378 Public services Yes
## 1379 Public services Yes
## 1380 Industry, manufacturing, construction No
## 1381 Private services No
## 1382 Not in paid work No
## 1383 Private services Yes
## 1384 Private services Yes
## 1385 Public services Yes
## 1386 Industry, manufacturing, construction No
## 1387 Private services No
## 1388 Public services Yes
## 1389 Industry, manufacturing, construction No
## 1390 Public services Yes
## 1391 Private services No
## 1392 Not in paid work No
## 1393 Private services Yes
## 1394 Public services No
## 1395 Private services Yes
## 1396 Private services No
## 1397 Private services No
## 1398 Public services No
## 1399 Private services Yes
## 1400 Industry, manufacturing, construction Yes
## 1401 Not in paid work No
## 1402 Private services Yes
## 1403 Not in paid work No
## 1404 Private services No
## 1405 Public services Yes
## 1406 Public services No
## 1407 Industry, manufacturing, construction No
## 1408 Industry, manufacturing, construction No
## 1409 Private services No
## 1410 Public services Yes
## 1411 Industry, manufacturing, construction Yes
## 1412 Public services No
## 1413 Public services No
## 1414 Not in paid work No
## 1415 Private services No
## 1416 Private services No
## 1417 Public services No
## 1418 Private services No
## 1419 Private services Yes
## 1420 Private services No
## 1421 Private services No
## 1422 Private services No
## 1423 Industry, manufacturing, construction Yes
## 1424 Public services No
## 1425 Public services No
## 1426 Private services Yes
## 1427 Public services Yes
## 1428 Private services No
## 1429 Private services No
## 1430 Public services No
## 1431 Private services Yes
## 1432 Agriculture and forestry No
## 1433 Private services No
## 1434 Not in paid work No
## 1435 Industry, manufacturing, construction Yes
## 1436 Private services No
## 1437 Private services No
## 1438 Public services No
## 1439 Public services No
## 1440 Public services No
## 1441 Industry, manufacturing, construction No
## 1442 Private services Yes
## 1443 Private services No
## 1444 Public services Yes
## 1445 Public services Yes
## 1446 Private services No
## 1447 Private services No
## 1448 Public services No
## 1449 Public services No
## 1450 Public services No
## 1451 Public services Yes
## 1452 Industry, manufacturing, construction No
## 1453 Industry, manufacturing, construction Yes
## 1454 Private services No
## 1455 Industry, manufacturing, construction Yes
## 1456 Public services Yes
## 1457 Not in paid work No
## 1458 Public services No
## 1459 Public services No
## 1460 Private services No
## 1461 Industry, manufacturing, construction Yes
## 1462 Not in paid work No
## 1463 Agriculture and forestry Yes
## 1464 Industry, manufacturing, construction No
## 1465 Private services No
## 1466 Public services No
## 1467 Private services Yes
## 1468 Agriculture and forestry No
## 1469 Public services No
## 1470 Private services Yes
## 1471 Private services No
## 1472 Public services No
## 1473 Industry, manufacturing, construction Yes
## 1474 Industry, manufacturing, construction Yes
## 1475 Private services Yes
## 1476 Private services No
## 1477 Industry, manufacturing, construction No
## 1478 Public services No
## 1479 Public services No
## 1480 Industry, manufacturing, construction Yes
## 1481 Agriculture and forestry Yes
## 1482 Private services No
## 1483 Public services No
## 1484 Not in paid work No
## 1485 Industry, manufacturing, construction No
## 1486 Public services No
## 1487 Private services No
## 1488 Private services No
## 1489 Industry, manufacturing, construction No
## 1490 Public services No
## 1491 Private services No
## 1492 Not in paid work Yes
## 1493 Public services Yes
## 1494 Industry, manufacturing, construction Yes
## 1495 Private services Yes
## 1496 Public services No
## 1497 Industry, manufacturing, construction Yes
## 1498 Industry, manufacturing, construction Yes
## 1499 Private services No
## 1500 Private services No
## 1501 Not in paid work No
## 1502 Public services Yes
## 1503 Industry, manufacturing, construction Yes
## 1504 Private services Yes
## 1505 Public services No
## 1506 Public services No
## 1507 Industry, manufacturing, construction Yes
## 1508 Private services No
## 1509 Agriculture and forestry No
## 1510 Agriculture and forestry No
## 1511 Private services No
## 1512 Industry, manufacturing, construction No
## 1513 Industry, manufacturing, construction Yes
## 1514 Industry, manufacturing, construction Yes
## 1515 Industry, manufacturing, construction Yes
## 1516 Public services No
## 1517 Public services No
## 1518 Industry, manufacturing, construction No
## 1519 Industry, manufacturing, construction No
## 1520 Industry, manufacturing, construction No
## 1521 Public services Yes
## 1522 Industry, manufacturing, construction No
## 1523 Private services No
## 1524 Industry, manufacturing, construction No
## 1525 Private services Yes
## 1526 Not in paid work No
## 1527 Private services No
## 1528 Public services Yes
## 1529 Industry, manufacturing, construction No
## 1530 Private services Yes
## 1531 Agriculture and forestry No
## 1532 Public services No
## 1533 Industry, manufacturing, construction No
## 1534 Private services No
## 1535 Private services No
## 1536 Public services No
## 1537 Public services Yes
## 1538 Public services No
## 1539 Private services No
## 1540 Public services Yes
## 1541 Not in paid work No
## 1542 Public services No
## 1543 Agriculture and forestry Yes
## 1544 Industry, manufacturing, construction Yes
## 1545 Industry, manufacturing, construction No
## 1546 Private services No
## 1547 Industry, manufacturing, construction No
## 1548 Public services No
## 1549 Public services No
## 1550 Industry, manufacturing, construction No
## 1551 Private services No
## 1552 Industry, manufacturing, construction No
## 1553 Private services No
## 1554 Agriculture and forestry No
## 1555 Industry, manufacturing, construction No
## 1556 Industry, manufacturing, construction Yes
## 1557 Private services No
## 1558 Public services No
## 1559 Agriculture and forestry No
## 1560 Not in paid work No
## 1561 Industry, manufacturing, construction No
## 1562 Industry, manufacturing, construction No
## 1563 Private services No
## 1564 Not in paid work No
## 1565 Private services No
## 1566 Private services No
## 1567 Public services Yes
## 1568 Public services Yes
## 1569 Not in paid work No
## 1570 Private services No
## 1571 Industry, manufacturing, construction No
## 1572 Public services Yes
## 1573 Public services No
## 1574 Industry, manufacturing, construction Yes
## 1575 Industry, manufacturing, construction No
## 1576 Private services No
## 1577 Industry, manufacturing, construction Yes
## 1578 Not in paid work No
## 1579 Not in paid work No
## 1580 Not in paid work No
## 1581 Public services No
## 1582 Industry, manufacturing, construction No
## 1583 Public services No
## 1584 Private services Yes
## 1585 Public services Yes
## 1586 Public services No
## 1587 Industry, manufacturing, construction Yes
## 1588 Private services No
## 1589 Private services Yes
## 1590 Not in paid work No
## 1591 Industry, manufacturing, construction Yes
## 1592 Private services No
## 1593 Industry, manufacturing, construction Yes
## 1594 Private services No
## 1595 Private services No
## 1596 Public services Yes
## 1597 Public services Yes
## 1598 Private services No
## 1599 Industry, manufacturing, construction Yes
## 1600 Private services No
## 1601 Private services No
## 1602 Public services Yes
## 1603 Public services No
## 1604 Public services No
## 1605 Private services No
## 1606 Industry, manufacturing, construction Yes
## 1607 Industry, manufacturing, construction No
## 1608 Not in paid work Yes
## 1609 Public services No
## 1610 Agriculture and forestry No
## 1611 Private services No
## 1612 Private services No
## 1613 Industry, manufacturing, construction Yes
## 1614 Public services Yes
## 1615 Public services No
## 1616 Public services Yes
## 1617 Private services No
## 1618 Public services No
## 1619 Industry, manufacturing, construction No
## 1620 Private services No
## 1621 Industry, manufacturing, construction Yes
## 1622 Private services No
## 1623 Not in paid work No
## 1624 Not in paid work No
## 1625 Private services No
## 1626 Public services No
## 1627 Private services No
## 1628 Private services Yes
## 1629 Industry, manufacturing, construction No
## 1630 Private services No
## 1631 Public services No
## 1632 Private services No
## 1633 Industry, manufacturing, construction Yes
## 1634 Industry, manufacturing, construction Yes
## 1635 Public services No
## 1636 Private services No
## 1637 Public services Yes
## 1638 Industry, manufacturing, construction No
## 1639 Private services No
## 1640 Private services No
## 1641 Private services No
## 1642 Private services Yes
## 1643 Private services No
## 1644 Private services No
## 1645 Private services No
## 1646 Public services No
## 1647 Public services No
## 1648 Industry, manufacturing, construction No
## 1649 Not in paid work No
## 1650 Public services No
## 1651 Public services No
## 1652 Not in paid work No
## 1653 Private services No
## 1654 Public services No
## 1655 Not in paid work No
## 1656 Private services No
## 1657 Private services No
## 1658 Not in paid work No
## 1659 Private services No
## 1660 Public services No
## 1661 Private services Yes
## 1662 Private services No
## 1663 Not in paid work No
## 1664 Private services No
## 1665 Industry, manufacturing, construction No
## 1666 Private services No
## 1667 Industry, manufacturing, construction No
## 1668 Agriculture and forestry No
## 1669 Not in paid work No
## 1670 Public services No
## 1671 Private services No
## 1672 Private services Yes
## 1673 Private services No
## 1674 Private services No
## 1675 Private services No
## 1676 Public services No
## 1677 Not in paid work No
## 1678 Private services No
## 1679 Industry, manufacturing, construction No
## 1680 Private services No
## 1681 Private services No
## 1682 Agriculture and forestry Yes
## 1683 Private services No
## 1684 Private services No
## 1685 Private services No
## 1686 Not in paid work Yes
## 1687 Not in paid work No
## 1688 Public services Yes
## 1689 Public services No
## 1690 Private services Yes
## 1691 Private services Yes
## 1692 Public services No
## 1693 Public services No
## 1694 Public services Yes
## 1695 Private services No
## 1696 Industry, manufacturing, construction Yes
## 1697 Private services Yes
## 1698 Private services No
## 1699 Private services No
## 1700 Private services No
## 1701 Public services Yes
## 1702 Public services No
## 1703 Public services No
## 1704 Private services No
## 1705 Private services No
## 1706 Industry, manufacturing, construction No
## 1707 Private services Yes
## 1708 Public services No
## 1709 Industry, manufacturing, construction Yes
## 1710 Agriculture and forestry No
## 1711 Not in paid work No
## 1712 Private services No
## 1713 Private services Yes
## 1714 Public services Yes
## 1715 Private services No
## 1716 Private services No
## 1717 Public services No
## 1718 Private services No
## 1719 Private services Yes
## 1720 Industry, manufacturing, construction No
## 1721 Private services No
## 1722 Private services No
## 1723 Public services Yes
## 1724 Public services Yes
## 1725 Public services No
## 1726 Public services No
## 1727 Not in paid work No
## 1728 Private services Yes
## 1729 Private services No
## 1730 Private services Yes
## 1731 Agriculture and forestry No
## 1732 Public services Yes
## 1733 Private services No
## 1734 Private services No
## 1735 Industry, manufacturing, construction Yes
## 1736 Public services Yes
## 1737 Public services Yes
## 1738 Private services No
## 1739 Public services Yes
## 1740 Private services No
## 1741 Public services Yes
## 1742 Public services Yes
## 1743 Not in paid work No
## 1744 Industry, manufacturing, construction No
## 1745 Not in paid work No
## 1746 Public services No
## 1747 Industry, manufacturing, construction No
## 1748 Industry, manufacturing, construction Yes
## 1749 Private services No
## 1750 Public services No
## 1751 Private services Yes
## 1752 Industry, manufacturing, construction No
## 1753 Private services No
## 1754 Public services Yes
## 1755 Public services No
## 1756 Not in paid work No
## 1757 Industry, manufacturing, construction No
## 1758 Private services Yes
## 1759 Private services No
## 1760 Private services No
## 1761 Industry, manufacturing, construction Yes
## 1762 Private services No
## 1763 Public services Yes
## 1764 Public services Yes
## 1765 Industry, manufacturing, construction No
## 1766 Public services No
## 1767 Industry, manufacturing, construction No
## 1768 Agriculture and forestry No
## 1769 Public services No
## 1770 Industry, manufacturing, construction Yes
## 1771 Private services No
## 1772 Public services No
## 1773 Public services Yes
## 1774 Private services No
## 1775 Private services No
## 1776 Public services No
## 1777 Public services Yes
## 1778 Private services Yes
## 1779 Private services No
## 1780 Private services No
## 1781 Private services No
## 1782 Industry, manufacturing, construction No
## 1783 Private services No
## 1784 Public services No
## 1785 Industry, manufacturing, construction No
## 1786 Private services Yes
## 1787 Public services No
## 1788 Industry, manufacturing, construction No
## 1789 Not in paid work Yes
## 1790 Not in paid work No
## 1791 Public services No
## 1792 Industry, manufacturing, construction No
## 1793 Private services No
## 1794 Private services Yes
## 1795 Public services Yes
## 1796 Private services No
## 1797 Private services No
## 1798 Private services No
## 1799 Private services Yes
## 1800 Private services No
## 1801 Not in paid work No
## 1802 Private services No
## 1803 Private services No
## 1804 Public services No
## 1805 Private services No
## 1806 Private services No
## 1807 Not in paid work No
## 1808 Private services No
## 1809 Private services Yes
## 1810 Private services No
## 1811 Private services No
## 1812 Private services No
## 1813 Industry, manufacturing, construction No
## 1814 Private services No
## 1815 Public services No
## 1816 Public services Yes
## 1817 Industry, manufacturing, construction Yes
## 1818 Public services Yes
## 1819 Public services No
## 1820 Industry, manufacturing, construction Yes
## 1821 Public services No
## 1822 Public services Yes
## 1823 Private services No
## 1824 Private services No
## 1825 Industry, manufacturing, construction Yes
## 1826 Agriculture and forestry Yes
## 1827 Industry, manufacturing, construction Yes
## 1828 Private services No
## 1829 Public services Yes
## 1830 Public services Yes
## 1831 Industry, manufacturing, construction Yes
## 1832 Not in paid work No
## 1833 Public services No
## 1834 Public services Yes
## 1835 Public services No
## 1836 Agriculture and forestry No
## 1837 Industry, manufacturing, construction Yes
## 1838 Public services No
## 1839 Private services No
## 1840 Private services No
## 1841 Private services No
## 1842 Private services No
## 1843 Not in paid work No
## 1844 Industry, manufacturing, construction Yes
## 1845 Public services No
## 1846 Private services No
## 1847 Private services No
## 1848 Public services No
## 1849 Private services Yes
## 1850 Industry, manufacturing, construction No
## 1851 Public services No
## 1852 Private services No
## 1853 Private services No
## 1854 Public services No
## 1855 Public services Yes
## 1856 Public services No
## 1857 Not in paid work No
## 1858 Private services No
## 1859 Public services No
## 1860 Industry, manufacturing, construction No
## 1861 Private services Yes
## 1862 Industry, manufacturing, construction No
## 1863 Private services No
## 1864 Industry, manufacturing, construction No
## 1865 Private services No
## 1866 Agriculture and forestry No
## 1867 Public services Yes
## 1868 Public services No
## 1869 Industry, manufacturing, construction No
## 1870 Private services No
## 1871 Private services No
## 1872 Private services No
## 1873 Public services No
## 1874 Private services No
## 1875 Private services Yes
## 1876 Public services No
## 1877 Private services No
## 1878 Private services Yes
## 1879 Industry, manufacturing, construction No
## 1880 Industry, manufacturing, construction No
## 1881 Public services No
## 1882 Industry, manufacturing, construction No
## 1883 Private services No
## 1884 Private services No
## 1885 Private services No
## 1886 Public services Yes
## 1887 Private services No
## 1888 Industry, manufacturing, construction No
## 1889 Public services Yes
## 1890 Private services No
## 1891 Industry, manufacturing, construction No
## 1892 Industry, manufacturing, construction No
## 1893 Public services No
## 1894 Public services No
## 1895 Not in paid work No
## 1896 Public services No
## 1897 Not in paid work No
## 1898 Agriculture and forestry Yes
## 1899 Industry, manufacturing, construction Yes
## 1900 Public services Yes
## 1901 Private services Yes
## 1902 Public services No
## 1903 Public services No
## 1904 Agriculture and forestry Yes
## 1905 Industry, manufacturing, construction No
## 1906 Public services No
## 1907 Not in paid work No
## 1908 Private services Yes
## 1909 Industry, manufacturing, construction No
## 1910 Agriculture and forestry No
## 1911 Private services Yes
## 1912 Industry, manufacturing, construction No
## 1913 Private services No
## 1914 Industry, manufacturing, construction No
## 1915 Private services Yes
## 1916 Private services No
## 1917 Industry, manufacturing, construction No
## 1918 Private services No
## 1919 Private services No
## 1920 Private services Yes
## 1921 Public services No
## 1922 Public services No
## 1923 Private services No
## 1924 Public services Yes
## 1925 Industry, manufacturing, construction No
## 1926 Private services No
## 1927 Private services No
## 1928 Private services No
## 1929 Private services Yes
## 1930 Not in paid work No
## 1931 Public services No
## 1932 Not in paid work No
## 1933 Public services Yes
## 1934 Public services No
## 1935 Private services No
## 1936 Private services No
## 1937 Public services Yes
## 1938 Agriculture and forestry No
## party_vote social_class
## 1 Finns Party (PS) Middle class
## 2 Social Democratic Party of Finland (SDP) Upper middle class
## 3 Green League (VIHR) Middle class
## 4 Finns Party (PS) Working class
## 5 National Coalition Party (KOK) Do not belong to any class
## 6 Finns Party (PS) Upper middle class
## 7 Would not vote Do not belong to any class
## 8 Finns Party (PS) Do not belong to any class
## 9 Social Democratic Party of Finland (SDP) Lower middle class
## 10 Left Alliance (VAS) Working class
## 11 National Coalition Party (KOK) Middle class
## 12 Finns Party (PS) Middle class
## 13 Finns Party (PS) Working class
## 14 Green League (VIHR) Middle class
## 15 Social Democratic Party of Finland (SDP) Working class
## 16 Finns Party (PS) Middle class
## 17 National Coalition Party (KOK) Middle class
## 18 Can't say Middle class
## 19 Finns Party (PS) Middle class
## 20 Can't say Do not belong to any class
## 21 Green League (VIHR) Upper middle class
## 22 National Coalition Party (KOK) Middle class
## 23 Centre Party of Finland (KESK) Upper middle class
## 24 Green League (VIHR) Middle class
## 25 National Coalition Party (KOK) Upper middle class
## 26 Can't say Working class
## 27 Social Democratic Party of Finland (SDP) Middle class
## 28 Green League (VIHR) Middle class
## 29 Can't say Lower middle class
## 30 Finns Party (PS) Middle class
## 31 National Coalition Party (KOK) Upper middle class
## 32 Can't say Upper middle class
## 33 Centre Party of Finland (KESK) Working class
## 34 Centre Party of Finland (KESK) Middle class
## 35 Can't say Upper middle class
## 36 Centre Party of Finland (KESK) Do not belong to any class
## 37 Movement Now (Liike Nyt) Lower middle class
## 38 Finns Party (PS) Middle class
## 39 Swedish People's Party in Finland (RKP) Upper middle class
## 40 Finns Party (PS) Working class
## 41 Finns Party (PS) Upper middle class
## 42 Social Democratic Party of Finland (SDP) Middle class
## 43 Social Democratic Party of Finland (SDP) Working class
## 44 Can't say Middle class
## 45 Can't say Lower middle class
## 46 National Coalition Party (KOK) Working class
## 47 Swedish People's Party in Finland (RKP) Middle class
## 48 Social Democratic Party of Finland (SDP) Middle class
## 49 Social Democratic Party of Finland (SDP) Lower middle class
## 50 Can't say Middle class
## 51 Centre Party of Finland (KESK) Middle class
## 52 National Coalition Party (KOK) Upper middle class
## 53 Green League (VIHR) Middle class
## 54 Social Democratic Party of Finland (SDP) Working class
## 55 Finns Party (PS) Working class
## 56 Green League (VIHR) Do not belong to any class
## 57 Social Democratic Party of Finland (SDP) Lower middle class
## 58 Social Democratic Party of Finland (SDP) Working class
## 59 National Coalition Party (KOK) Middle class
## 60 Green League (VIHR) Middle class
## 61 Centre Party of Finland (KESK) Middle class
## 62 Swedish People's Party in Finland (RKP) Middle class
## 63 National Coalition Party (KOK) Upper middle class
## 64 Centre Party of Finland (KESK) Do not belong to any class
## 65 Social Democratic Party of Finland (SDP) Middle class
## 66 Can't say Lower middle class
## 67 Christian Democrats (KD) Upper middle class
## 68 Social Democratic Party of Finland (SDP) Working class
## 69 Green League (VIHR) Middle class
## 70 Finns Party (PS) Lower middle class
## 71 Finns Party (PS) Working class
## 72 National Coalition Party (KOK) Lower middle class
## 73 Don't want to say Middle class
## 74 Left Alliance (VAS) Middle class
## 75 Left Alliance (VAS) Working class
## 76 Social Democratic Party of Finland (SDP) Working class
## 77 Some other party or group Middle class
## 78 Social Democratic Party of Finland (SDP) Middle class
## 79 National Coalition Party (KOK) Middle class
## 80 Left Alliance (VAS) Working class
## 81 Can't say Do not belong to any class
## 82 Centre Party of Finland (KESK) Middle class
## 83 Left Alliance (VAS) Do not belong to any class
## 84 Can't say Do not belong to any class
## 85 Can't say Middle class
## 86 Can't say Do not belong to any class
## 87 Finns Party (PS) Working class
## 88 National Coalition Party (KOK) Middle class
## 89 Can't say Lower middle class
## 90 Can't say Do not belong to any class
## 91 Left Alliance (VAS) Do not belong to any class
## 92 Can't say Upper middle class
## 93 Social Democratic Party of Finland (SDP) Lower middle class
## 94 Swedish People's Party in Finland (RKP) Middle class
## 95 Finns Party (PS) Middle class
## 96 National Coalition Party (KOK) Upper middle class
## 97 Don't want to say Upper middle class
## 98 Some other party or group Working class
## 99 Finns Party (PS) Working class
## 100 Finns Party (PS) Upper middle class
## 101 Can't say Middle class
## 102 National Coalition Party (KOK) Upper middle class
## 103 Finns Party (PS) Middle class
## 104 Can't say Middle class
## 105 Finns Party (PS) Working class
## 106 Can't say Middle class
## 107 Green League (VIHR) Upper middle class
## 108 Social Democratic Party of Finland (SDP) Working class
## 109 Can't say Do not belong to any class
## 110 Movement Now (Liike Nyt) Middle class
## 111 Don't want to say Middle class
## 112 Left Alliance (VAS) Working class
## 113 Can't say Upper middle class
## 114 Some other party or group Do not belong to any class
## 115 Centre Party of Finland (KESK) Upper middle class
## 116 National Coalition Party (KOK) Middle class
## 117 Don't want to say Working class
## 118 National Coalition Party (KOK) Middle class
## 119 Social Democratic Party of Finland (SDP) Lower middle class
## 120 Finns Party (PS) Lower middle class
## 121 Green League (VIHR) Middle class
## 122 Social Democratic Party of Finland (SDP) Middle class
## 123 National Coalition Party (KOK) Middle class
## 124 Finns Party (PS) Do not belong to any class
## 125 Finns Party (PS) Upper middle class
## 126 Would not vote Do not belong to any class
## 127 Social Democratic Party of Finland (SDP) Middle class
## 128 Centre Party of Finland (KESK) Middle class
## 129 Social Democratic Party of Finland (SDP) Working class
## 130 Would not vote Working class
## 131 Can't say Working class
## 132 Swedish People's Party in Finland (RKP) Middle class
## 133 Don't want to say Do not belong to any class
## 134 Would not vote Upper middle class
## 135 Green League (VIHR) Lower middle class
## 136 National Coalition Party (KOK) Lower middle class
## 137 Social Democratic Party of Finland (SDP) Middle class
## 138 Can't say Middle class
## 139 Can't say Do not belong to any class
## 140 National Coalition Party (KOK) Middle class
## 141 Would not vote Middle class
## 142 Finns Party (PS) Do not belong to any class
## 143 Can't say Lower middle class
## 144 Would not vote Middle class
## 145 Finns Party (PS) Lower middle class
## 146 Finns Party (PS) Working class
## 147 Left Alliance (VAS) Middle class
## 148 Social Democratic Party of Finland (SDP) Middle class
## 149 Green League (VIHR) Working class
## 150 Would not vote Lower middle class
## 151 Can't say Working class
## 152 Left Alliance (VAS) Working class
## 153 Social Democratic Party of Finland (SDP) Working class
## 154 Social Democratic Party of Finland (SDP) Working class
## 155 Can't say Working class
## 156 Don't want to say Do not belong to any class
## 157 National Coalition Party (KOK) Lower middle class
## 158 Finns Party (PS) Middle class
## 159 Green League (VIHR) Do not belong to any class
## 160 Green League (VIHR) Middle class
## 161 Finns Party (PS) Do not belong to any class
## 162 Green League (VIHR) Upper middle class
## 163 National Coalition Party (KOK) Upper middle class
## 164 Left Alliance (VAS) Do not belong to any class
## 165 Finns Party (PS) Working class
## 166 Can't say Lower middle class
## 167 Social Democratic Party of Finland (SDP) Middle class
## 168 National Coalition Party (KOK) Do not belong to any class
## 169 Social Democratic Party of Finland (SDP) Middle class
## 170 Finns Party (PS) Do not belong to any class
## 171 Can't say Lower middle class
## 172 Green League (VIHR) Middle class
## 173 Social Democratic Party of Finland (SDP) Lower middle class
## 174 Centre Party of Finland (KESK) Working class
## 175 Social Democratic Party of Finland (SDP) Working class
## 176 Finns Party (PS) Lower middle class
## 177 Social Democratic Party of Finland (SDP) Do not belong to any class
## 178 Can't say Middle class
## 179 National Coalition Party (KOK) Middle class
## 180 Centre Party of Finland (KESK) Do not belong to any class
## 181 Left Alliance (VAS) Working class
## 182 Centre Party of Finland (KESK) Middle class
## 183 Social Democratic Party of Finland (SDP) Do not belong to any class
## 184 Social Democratic Party of Finland (SDP) Lower middle class
## 185 Social Democratic Party of Finland (SDP) Working class
## 186 Social Democratic Party of Finland (SDP) Upper middle class
## 187 Can't say Do not belong to any class
## 188 Can't say Do not belong to any class
## 189 National Coalition Party (KOK) Middle class
## 190 Green League (VIHR) Middle class
## 191 Left Alliance (VAS) Middle class
## 192 Can't say Do not belong to any class
## 193 Movement Now (Liike Nyt) Lower middle class
## 194 Finns Party (PS) Do not belong to any class
## 195 Green League (VIHR) Working class
## 196 Christian Democrats (KD) Middle class
## 197 Social Democratic Party of Finland (SDP) Working class
## 198 Social Democratic Party of Finland (SDP) Do not belong to any class
## 199 National Coalition Party (KOK) Upper middle class
## 200 Social Democratic Party of Finland (SDP) Working class
## 201 Green League (VIHR) Lower middle class
## 202 Social Democratic Party of Finland (SDP) Working class
## 203 National Coalition Party (KOK) Upper middle class
## 204 Social Democratic Party of Finland (SDP) Lower middle class
## 205 Centre Party of Finland (KESK) Lower middle class
## 206 Finns Party (PS) Middle class
## 207 Finns Party (PS) Lower middle class
## 208 Social Democratic Party of Finland (SDP) Upper middle class
## 209 Can't say Do not belong to any class
## 210 Can't say Do not belong to any class
## 211 Can't say Lower middle class
## 212 Green League (VIHR) Middle class
## 213 Swedish People's Party in Finland (RKP) Upper middle class
## 214 Finns Party (PS) Do not belong to any class
## 215 Green League (VIHR) Upper middle class
## 216 Centre Party of Finland (KESK) Do not belong to any class
## 217 Social Democratic Party of Finland (SDP) Middle class
## 218 Green League (VIHR) Middle class
## 219 Centre Party of Finland (KESK) Middle class
## 220 Social Democratic Party of Finland (SDP) Middle class
## 221 National Coalition Party (KOK) Middle class
## 222 Can't say Working class
## 223 Some other party or group Do not belong to any class
## 224 Social Democratic Party of Finland (SDP) Working class
## 225 Green League (VIHR) Middle class
## 226 Green League (VIHR) Upper middle class
## 227 National Coalition Party (KOK) Lower middle class
## 228 Social Democratic Party of Finland (SDP) Upper middle class
## 229 Green League (VIHR) Working class
## 230 National Coalition Party (KOK) Do not belong to any class
## 231 Can't say Middle class
## 232 Can't say Working class
## 233 Finns Party (PS) Lower middle class
## 234 Centre Party of Finland (KESK) Middle class
## 235 Social Democratic Party of Finland (SDP) Middle class
## 236 Left Alliance (VAS) Middle class
## 237 National Coalition Party (KOK) Middle class
## 238 Green League (VIHR) Middle class
## 239 Centre Party of Finland (KESK) Middle class
## 240 Social Democratic Party of Finland (SDP) Middle class
## 241 Social Democratic Party of Finland (SDP) Lower middle class
## 242 National Coalition Party (KOK) Middle class
## 243 Can't say Do not belong to any class
## 244 National Coalition Party (KOK) Upper middle class
## 245 National Coalition Party (KOK) Middle class
## 246 Finns Party (PS) Middle class
## 247 National Coalition Party (KOK) Working class
## 248 Social Democratic Party of Finland (SDP) Upper middle class
## 249 Can't say Do not belong to any class
## 250 Centre Party of Finland (KESK) Do not belong to any class
## 251 Social Democratic Party of Finland (SDP) Lower middle class
## 252 Green League (VIHR) Middle class
## 253 Christian Democrats (KD) Upper middle class
## 254 Finns Party (PS) Working class
## 255 National Coalition Party (KOK) Middle class
## 256 Would not vote Middle class
## 257 Finns Party (PS) Lower middle class
## 258 Christian Democrats (KD) Working class
## 259 Centre Party of Finland (KESK) Lower middle class
## 260 Left Alliance (VAS) Working class
## 261 Centre Party of Finland (KESK) Middle class
## 262 Can't say Middle class
## 263 Would not vote Working class
## 264 Green League (VIHR) Middle class
## 265 Don't want to say Middle class
## 266 Social Democratic Party of Finland (SDP) Middle class
## 267 National Coalition Party (KOK) Upper middle class
## 268 Finns Party (PS) Lower middle class
## 269 Can't say Do not belong to any class
## 270 Left Alliance (VAS) Working class
## 271 Some other party or group Do not belong to any class
## 272 Social Democratic Party of Finland (SDP) Working class
## 273 Swedish People's Party in Finland (RKP) Middle class
## 274 Social Democratic Party of Finland (SDP) Working class
## 275 Centre Party of Finland (KESK) Do not belong to any class
## 276 Can't say Do not belong to any class
## 277 Social Democratic Party of Finland (SDP) Working class
## 278 Finns Party (PS) Working class
## 279 Centre Party of Finland (KESK) Middle class
## 280 Social Democratic Party of Finland (SDP) Middle class
## 281 Centre Party of Finland (KESK) Middle class
## 282 Finns Party (PS) Working class
## 283 Social Democratic Party of Finland (SDP) Do not belong to any class
## 284 Finns Party (PS) Working class
## 285 Can't say Lower middle class
## 286 Can't say Working class
## 287 Centre Party of Finland (KESK) Middle class
## 288 Can't say Lower middle class
## 289 Social Democratic Party of Finland (SDP) Middle class
## 290 Left Alliance (VAS) Lower middle class
## 291 Can't say Middle class
## 292 Left Alliance (VAS) Do not belong to any class
## 293 Finns Party (PS) Middle class
## 294 Social Democratic Party of Finland (SDP) Working class
## 295 Social Democratic Party of Finland (SDP) Lower middle class
## 296 Swedish People's Party in Finland (RKP) Middle class
## 297 Don't want to say Working class
## 298 Social Democratic Party of Finland (SDP) Lower middle class
## 299 Don't want to say Lower middle class
## 300 Centre Party of Finland (KESK) Upper middle class
## 301 Don't want to say Do not belong to any class
## 302 National Coalition Party (KOK) Middle class
## 303 National Coalition Party (KOK) Upper middle class
## 304 Social Democratic Party of Finland (SDP) Lower middle class
## 305 Would not vote Middle class
## 306 Can't say Do not belong to any class
## 307 Social Democratic Party of Finland (SDP) Upper middle class
## 308 Can't say Do not belong to any class
## 309 Social Democratic Party of Finland (SDP) Working class
## 310 Left Alliance (VAS) Working class
## 311 Social Democratic Party of Finland (SDP) Middle class
## 312 Finns Party (PS) Upper middle class
## 313 Social Democratic Party of Finland (SDP) Do not belong to any class
## 314 Green League (VIHR) Middle class
## 315 National Coalition Party (KOK) Middle class
## 316 Can't say Middle class
## 317 National Coalition Party (KOK) Middle class
## 318 Can't say Working class
## 319 Social Democratic Party of Finland (SDP) Working class
## 320 Green League (VIHR) Do not belong to any class
## 321 Can't say Do not belong to any class
## 322 Social Democratic Party of Finland (SDP) Middle class
## 323 Centre Party of Finland (KESK) Working class
## 324 Social Democratic Party of Finland (SDP) Middle class
## 325 Finns Party (PS) Lower middle class
## 326 Social Democratic Party of Finland (SDP) Middle class
## 327 National Coalition Party (KOK) Working class
## 328 Christian Democrats (KD) Middle class
## 329 Green League (VIHR) Working class
## 330 Can't say Working class
## 331 Finns Party (PS) Middle class
## 332 Can't say Do not belong to any class
## 333 Would not vote Middle class
## 334 Can't say Middle class
## 335 Finns Party (PS) Upper middle class
## 336 Left Alliance (VAS) Upper middle class
## 337 Can't say Working class
## 338 Don't want to say Lower middle class
## 339 Social Democratic Party of Finland (SDP) Lower middle class
## 340 Social Democratic Party of Finland (SDP) Working class
## 341 Can't say Lower middle class
## 342 Finns Party (PS) Middle class
## 343 Centre Party of Finland (KESK) Do not belong to any class
## 344 Would not vote Do not belong to any class
## 345 Can't say Lower middle class
## 346 Finns Party (PS) Do not belong to any class
## 347 Finns Party (PS) Do not belong to any class
## 348 Swedish People's Party in Finland (RKP) Middle class
## 349 Can't say Working class
## 350 Don't want to say Lower middle class
## 351 National Coalition Party (KOK) Upper middle class
## 352 Social Democratic Party of Finland (SDP) Working class
## 353 Social Democratic Party of Finland (SDP) Working class
## 354 Swedish People's Party in Finland (RKP) Middle class
## 355 Can't say Lower middle class
## 356 Finns Party (PS) Middle class
## 357 Can't say Middle class
## 358 Green League (VIHR) Upper middle class
## 359 Don't want to say Do not belong to any class
## 360 Social Democratic Party of Finland (SDP) Middle class
## 361 National Coalition Party (KOK) Upper middle class
## 362 Can't say Working class
## 363 Social Democratic Party of Finland (SDP) Middle class
## 364 Left Alliance (VAS) Middle class
## 365 Centre Party of Finland (KESK) Middle class
## 366 Would not vote Working class
## 367 Social Democratic Party of Finland (SDP) Working class
## 368 Christian Democrats (KD) Middle class
## 369 Green League (VIHR) Middle class
## 370 Green League (VIHR) Middle class
## 371 Centre Party of Finland (KESK) Middle class
## 372 Finns Party (PS) Middle class
## 373 Green League (VIHR) Lower middle class
## 374 Can't say Middle class
## 375 Social Democratic Party of Finland (SDP) Do not belong to any class
## 376 Centre Party of Finland (KESK) Do not belong to any class
## 377 Green League (VIHR) Do not belong to any class
## 378 Finns Party (PS) Upper middle class
## 379 Can't say Working class
## 380 National Coalition Party (KOK) Upper middle class
## 381 Finns Party (PS) Working class
## 382 Green League (VIHR) Middle class
## 383 National Coalition Party (KOK) Middle class
## 384 Finns Party (PS) Working class
## 385 Social Democratic Party of Finland (SDP) Lower middle class
## 386 Centre Party of Finland (KESK) Do not belong to any class
## 387 Christian Democrats (KD) Middle class
## 388 Centre Party of Finland (KESK) Lower middle class
## 389 Green League (VIHR) Do not belong to any class
## 390 Social Democratic Party of Finland (SDP) Working class
## 391 Green League (VIHR) Middle class
## 392 Green League (VIHR) Middle class
## 393 Social Democratic Party of Finland (SDP) Middle class
## 394 Christian Democrats (KD) Do not belong to any class
## 395 Don't want to say Working class
## 396 Finns Party (PS) Working class
## 397 Can't say Lower middle class
## 398 Social Democratic Party of Finland (SDP) Middle class
## 399 National Coalition Party (KOK) Middle class
## 400 Centre Party of Finland (KESK) Do not belong to any class
## 401 Centre Party of Finland (KESK) Middle class
## 402 Can't say Do not belong to any class
## 403 Left Alliance (VAS) Working class
## 404 Finns Party (PS) Do not belong to any class
## 405 Can't say Middle class
## 406 Can't say Lower middle class
## 407 Centre Party of Finland (KESK) Working class
## 408 National Coalition Party (KOK) Middle class
## 409 Can't say Middle class
## 410 Can't say Middle class
## 411 Social Democratic Party of Finland (SDP) Working class
## 412 Left Alliance (VAS) Working class
## 413 Green League (VIHR) Middle class
## 414 Centre Party of Finland (KESK) Middle class
## 415 National Coalition Party (KOK) Upper middle class
## 416 Social Democratic Party of Finland (SDP) Working class
## 417 Left Alliance (VAS) Upper middle class
## 418 Swedish People's Party in Finland (RKP) Upper middle class
## 419 National Coalition Party (KOK) Lower middle class
## 420 National Coalition Party (KOK) Middle class
## 421 Centre Party of Finland (KESK) Middle class
## 422 Green League (VIHR) Middle class
## 423 Finns Party (PS) Middle class
## 424 Can't say Lower middle class
## 425 Can't say Do not belong to any class
## 426 Social Democratic Party of Finland (SDP) Working class
## 427 Left Alliance (VAS) Do not belong to any class
## 428 Finns Party (PS) Working class
## 429 National Coalition Party (KOK) Upper middle class
## 430 Left Alliance (VAS) Working class
## 431 Social Democratic Party of Finland (SDP) Middle class
## 432 Green League (VIHR) Do not belong to any class
## 433 Left Alliance (VAS) Middle class
## 434 Centre Party of Finland (KESK) Upper class
## 435 Green League (VIHR) Upper middle class
## 436 Movement Now (Liike Nyt) Middle class
## 437 Christian Democrats (KD) Upper middle class
## 438 Centre Party of Finland (KESK) Middle class
## 439 Social Democratic Party of Finland (SDP) Middle class
## 440 Left Alliance (VAS) Working class
## 441 Social Democratic Party of Finland (SDP) Working class
## 442 Christian Democrats (KD) Working class
## 443 Centre Party of Finland (KESK) Working class
## 444 Social Democratic Party of Finland (SDP) Lower middle class
## 445 Centre Party of Finland (KESK) Middle class
## 446 Social Democratic Party of Finland (SDP) Middle class
## 447 Swedish People's Party in Finland (RKP) Middle class
## 448 Green League (VIHR) Do not belong to any class
## 449 National Coalition Party (KOK) Upper middle class
## 450 Left Alliance (VAS) Lower middle class
## 451 Social Democratic Party of Finland (SDP) Working class
## 452 Left Alliance (VAS) Working class
## 453 Finns Party (PS) Do not belong to any class
## 454 Green League (VIHR) Working class
## 455 Green League (VIHR) Do not belong to any class
## 456 Green League (VIHR) Middle class
## 457 Left Alliance (VAS) Do not belong to any class
## 458 Can't say Do not belong to any class
## 459 Finns Party (PS) Do not belong to any class
## 460 National Coalition Party (KOK) Upper middle class
## 461 Social Democratic Party of Finland (SDP) Upper middle class
## 462 Centre Party of Finland (KESK) Upper middle class
## 463 Centre Party of Finland (KESK) Middle class
## 464 Social Democratic Party of Finland (SDP) Do not belong to any class
## 465 Centre Party of Finland (KESK) Middle class
## 466 Social Democratic Party of Finland (SDP) Working class
## 467 Social Democratic Party of Finland (SDP) Middle class
## 468 Can't say Do not belong to any class
## 469 Green League (VIHR) Do not belong to any class
## 470 Christian Democrats (KD) Do not belong to any class
## 471 Finns Party (PS) Working class
## 472 Finns Party (PS) Middle class
## 473 Finns Party (PS) Middle class
## 474 National Coalition Party (KOK) Lower middle class
## 475 Social Democratic Party of Finland (SDP) Working class
## 476 National Coalition Party (KOK) Middle class
## 477 Can't say Do not belong to any class
## 478 Centre Party of Finland (KESK) Middle class
## 479 Can't say Do not belong to any class
## 480 Can't say Middle class
## 481 Finns Party (PS) Middle class
## 482 Swedish People's Party in Finland (RKP) Upper middle class
## 483 Some other party or group Do not belong to any class
## 484 Green League (VIHR) Lower middle class
## 485 National Coalition Party (KOK) Lower middle class
## 486 National Coalition Party (KOK) Upper middle class
## 487 Social Democratic Party of Finland (SDP) Lower middle class
## 488 Can't say Middle class
## 489 Centre Party of Finland (KESK) Lower middle class
## 490 Left Alliance (VAS) Upper middle class
## 491 Finns Party (PS) Upper middle class
## 492 Social Democratic Party of Finland (SDP) Middle class
## 493 Would not vote Do not belong to any class
## 494 Social Democratic Party of Finland (SDP) Lower middle class
## 495 Social Democratic Party of Finland (SDP) Working class
## 496 Social Democratic Party of Finland (SDP) Working class
## 497 Social Democratic Party of Finland (SDP) Working class
## 498 Centre Party of Finland (KESK) Working class
## 499 Green League (VIHR) Middle class
## 500 Can't say Upper middle class
## 501 Green League (VIHR) Middle class
## 502 Finns Party (PS) Middle class
## 503 Centre Party of Finland (KESK) Upper middle class
## 504 Social Democratic Party of Finland (SDP) Middle class
## 505 Would not vote Middle class
## 506 Social Democratic Party of Finland (SDP) Do not belong to any class
## 507 Social Democratic Party of Finland (SDP) Middle class
## 508 Don't want to say Upper middle class
## 509 Social Democratic Party of Finland (SDP) Working class
## 510 Green League (VIHR) Middle class
## 511 Social Democratic Party of Finland (SDP) Lower middle class
## 512 Would not vote Working class
## 513 Finns Party (PS) Middle class
## 514 Social Democratic Party of Finland (SDP) Working class
## 515 Finns Party (PS) Middle class
## 516 Swedish People's Party in Finland (RKP) Do not belong to any class
## 517 Green League (VIHR) Middle class
## 518 Left Alliance (VAS) Working class
## 519 National Coalition Party (KOK) Middle class
## 520 National Coalition Party (KOK) Lower middle class
## 521 Green League (VIHR) Lower middle class
## 522 Can't say Lower middle class
## 523 Social Democratic Party of Finland (SDP) Upper middle class
## 524 Centre Party of Finland (KESK) Upper middle class
## 525 Left Alliance (VAS) Working class
## 526 Centre Party of Finland (KESK) Middle class
## 527 Centre Party of Finland (KESK) Do not belong to any class
## 528 National Coalition Party (KOK) Lower middle class
## 529 Can't say Middle class
## 530 National Coalition Party (KOK) Middle class
## 531 Can't say Working class
## 532 Finns Party (PS) Working class
## 533 Would not vote Middle class
## 534 Left Alliance (VAS) Working class
## 535 Social Democratic Party of Finland (SDP) Working class
## 536 Would not vote Working class
## 537 Would not vote Upper middle class
## 538 Can't say Middle class
## 539 Don't want to say Do not belong to any class
## 540 Left Alliance (VAS) Lower middle class
## 541 Can't say Lower middle class
## 542 National Coalition Party (KOK) Upper middle class
## 543 Social Democratic Party of Finland (SDP) Middle class
## 544 Don't want to say Middle class
## 545 Left Alliance (VAS) Middle class
## 546 Left Alliance (VAS) Working class
## 547 Green League (VIHR) Upper middle class
## 548 Centre Party of Finland (KESK) Upper middle class
## 549 Left Alliance (VAS) Lower middle class
## 550 Centre Party of Finland (KESK) Middle class
## 551 Centre Party of Finland (KESK) Middle class
## 552 Social Democratic Party of Finland (SDP) Middle class
## 553 Social Democratic Party of Finland (SDP) Working class
## 554 Finns Party (PS) Middle class
## 555 National Coalition Party (KOK) Middle class
## 556 Left Alliance (VAS) Upper middle class
## 557 National Coalition Party (KOK) Middle class
## 558 Green League (VIHR) Middle class
## 559 Can't say Middle class
## 560 Social Democratic Party of Finland (SDP) Lower middle class
## 561 Can't say Middle class
## 562 Left Alliance (VAS) Working class
## 563 Centre Party of Finland (KESK) Do not belong to any class
## 564 Social Democratic Party of Finland (SDP) Working class
## 565 Would not vote Do not belong to any class
## 566 Can't say Working class
## 567 National Coalition Party (KOK) Middle class
## 568 Can't say Lower middle class
## 569 Social Democratic Party of Finland (SDP) Middle class
## 570 Can't say Middle class
## 571 National Coalition Party (KOK) Upper middle class
## 572 Would not vote Middle class
## 573 Left Alliance (VAS) Lower middle class
## 574 Can't say Middle class
## 575 Centre Party of Finland (KESK) Middle class
## 576 Finns Party (PS) Lower middle class
## 577 Can't say Lower middle class
## 578 Green League (VIHR) Do not belong to any class
## 579 Centre Party of Finland (KESK) Middle class
## 580 Centre Party of Finland (KESK) Do not belong to any class
## 581 Finns Party (PS) Lower middle class
## 582 Centre Party of Finland (KESK) Working class
## 583 Finns Party (PS) Middle class
## 584 Social Democratic Party of Finland (SDP) Upper middle class
## 585 National Coalition Party (KOK) Middle class
## 586 Can't say Middle class
## 587 National Coalition Party (KOK) Middle class
## 588 Can't say Middle class
## 589 Can't say Do not belong to any class
## 590 National Coalition Party (KOK) Upper middle class
## 591 Finns Party (PS) Lower middle class
## 592 Finns Party (PS) Middle class
## 593 Centre Party of Finland (KESK) Lower middle class
## 594 Can't say Lower middle class
## 595 Can't say Working class
## 596 Centre Party of Finland (KESK) Do not belong to any class
## 597 Can't say Lower middle class
## 598 Social Democratic Party of Finland (SDP) Do not belong to any class
## 599 Don't want to say Working class
## 600 Social Democratic Party of Finland (SDP) Middle class
## 601 Finns Party (PS) Working class
## 602 Social Democratic Party of Finland (SDP) Working class
## 603 Can't say Working class
## 604 Green League (VIHR) Middle class
## 605 Green League (VIHR) Working class
## 606 Can't say Do not belong to any class
## 607 Left Alliance (VAS) Middle class
## 608 Social Democratic Party of Finland (SDP) Middle class
## 609 Social Democratic Party of Finland (SDP) Middle class
## 610 Finns Party (PS) Do not belong to any class
## 611 Social Democratic Party of Finland (SDP) Upper middle class
## 612 Would not vote Do not belong to any class
## 613 Social Democratic Party of Finland (SDP) Lower middle class
## 614 Finns Party (PS) Lower middle class
## 615 Finns Party (PS) Do not belong to any class
## 616 Finns Party (PS) Upper middle class
## 617 Left Alliance (VAS) Working class
## 618 Green League (VIHR) Do not belong to any class
## 619 National Coalition Party (KOK) Middle class
## 620 Left Alliance (VAS) Do not belong to any class
## 621 Can't say Do not belong to any class
## 622 Can't say Middle class
## 623 National Coalition Party (KOK) Lower middle class
## 624 National Coalition Party (KOK) Upper middle class
## 625 Some other party or group Upper middle class
## 626 Movement Now (Liike Nyt) Middle class
## 627 Social Democratic Party of Finland (SDP) Lower middle class
## 628 Don't want to say Middle class
## 629 Left Alliance (VAS) Working class
## 630 Some other party or group Do not belong to any class
## 631 Can't say Lower middle class
## 632 Finns Party (PS) Do not belong to any class
## 633 Can't say Lower middle class
## 634 Can't say Lower middle class
## 635 National Coalition Party (KOK) Middle class
## 636 Finns Party (PS) Do not belong to any class
## 637 Left Alliance (VAS) Do not belong to any class
## 638 National Coalition Party (KOK) Middle class
## 639 Swedish People's Party in Finland (RKP) Middle class
## 640 Finns Party (PS) Lower middle class
## 641 Finns Party (PS) Middle class
## 642 Finns Party (PS) Lower middle class
## 643 Can't say Do not belong to any class
## 644 Finns Party (PS) Upper middle class
## 645 Left Alliance (VAS) Working class
## 646 Would not vote Working class
## 647 Social Democratic Party of Finland (SDP) Working class
## 648 Can't say Middle class
## 649 Centre Party of Finland (KESK) Do not belong to any class
## 650 Left Alliance (VAS) Working class
## 651 Finns Party (PS) Working class
## 652 Finns Party (PS) Do not belong to any class
## 653 Social Democratic Party of Finland (SDP) Lower middle class
## 654 Left Alliance (VAS) Middle class
## 655 Can't say Working class
## 656 Can't say Middle class
## 657 Left Alliance (VAS) Working class
## 658 Swedish People's Party in Finland (RKP) Middle class
## 659 Can't say Do not belong to any class
## 660 Social Democratic Party of Finland (SDP) Working class
## 661 Can't say Middle class
## 662 Social Democratic Party of Finland (SDP) Do not belong to any class
## 663 Can't say Working class
## 664 Finns Party (PS) Middle class
## 665 Finns Party (PS) Do not belong to any class
## 666 Finns Party (PS) Working class
## 667 Don't want to say Do not belong to any class
## 668 Social Democratic Party of Finland (SDP) Middle class
## 669 Green League (VIHR) Middle class
## 670 Green League (VIHR) Middle class
## 671 Centre Party of Finland (KESK) Middle class
## 672 National Coalition Party (KOK) Upper middle class
## 673 Social Democratic Party of Finland (SDP) Lower middle class
## 674 Swedish People's Party in Finland (RKP) Middle class
## 675 Can't say Middle class
## 676 Centre Party of Finland (KESK) Middle class
## 677 National Coalition Party (KOK) Upper middle class
## 678 Green League (VIHR) Do not belong to any class
## 679 Centre Party of Finland (KESK) Middle class
## 680 Can't say Lower middle class
## 681 Finns Party (PS) Working class
## 682 National Coalition Party (KOK) Upper class
## 683 Social Democratic Party of Finland (SDP) Working class
## 684 Finns Party (PS) Working class
## 685 Can't say Do not belong to any class
## 686 Finns Party (PS) Working class
## 687 Can't say Middle class
## 688 Would not vote Do not belong to any class
## 689 Can't say Upper middle class
## 690 Centre Party of Finland (KESK) Do not belong to any class
## 691 Green League (VIHR) Lower middle class
## 692 Social Democratic Party of Finland (SDP) Working class
## 693 Social Democratic Party of Finland (SDP) Working class
## 694 Can't say Middle class
## 695 Centre Party of Finland (KESK) Lower middle class
## 696 National Coalition Party (KOK) Middle class
## 697 Centre Party of Finland (KESK) Lower middle class
## 698 Some other party or group Do not belong to any class
## 699 Social Democratic Party of Finland (SDP) Upper middle class
## 700 Don't want to say Middle class
## 701 Can't say Working class
## 702 Can't say Middle class
## 703 Can't say Middle class
## 704 Can't say Middle class
## 705 Finns Party (PS) Working class
## 706 Green League (VIHR) Do not belong to any class
## 707 National Coalition Party (KOK) Middle class
## 708 Can't say Middle class
## 709 Can't say Middle class
## 710 Centre Party of Finland (KESK) Do not belong to any class
## 711 Social Democratic Party of Finland (SDP) Do not belong to any class
## 712 Don't want to say Middle class
## 713 Centre Party of Finland (KESK) Middle class
## 714 Centre Party of Finland (KESK) Working class
## 715 Left Alliance (VAS) Lower middle class
## 716 Centre Party of Finland (KESK) Lower middle class
## 717 Finns Party (PS) Do not belong to any class
## 718 Finns Party (PS) Middle class
## 719 Social Democratic Party of Finland (SDP) Working class
## 720 Can't say Lower middle class
## 721 Christian Democrats (KD) Working class
## 722 Left Alliance (VAS) Working class
## 723 Finns Party (PS) Working class
## 724 Left Alliance (VAS) Working class
## 725 Social Democratic Party of Finland (SDP) Working class
## 726 Finns Party (PS) Upper middle class
## 727 Green League (VIHR) Do not belong to any class
## 728 Left Alliance (VAS) Working class
## 729 Would not vote Do not belong to any class
## 730 Social Democratic Party of Finland (SDP) Lower middle class
## 731 Green League (VIHR) Middle class
## 732 Don't want to say Middle class
## 733 Social Democratic Party of Finland (SDP) Middle class
## 734 Centre Party of Finland (KESK) Do not belong to any class
## 735 Social Democratic Party of Finland (SDP) Working class
## 736 Centre Party of Finland (KESK) Do not belong to any class
## 737 National Coalition Party (KOK) Upper middle class
## 738 Can't say Do not belong to any class
## 739 Finns Party (PS) Middle class
## 740 Finns Party (PS) Middle class
## 741 Social Democratic Party of Finland (SDP) Middle class
## 742 Finns Party (PS) Middle class
## 743 Left Alliance (VAS) Lower middle class
## 744 National Coalition Party (KOK) Lower middle class
## 745 Swedish People's Party in Finland (RKP) Upper middle class
## 746 Social Democratic Party of Finland (SDP) Middle class
## 747 Can't say Middle class
## 748 Centre Party of Finland (KESK) Upper middle class
## 749 Social Democratic Party of Finland (SDP) Working class
## 750 Finns Party (PS) Do not belong to any class
## 751 Finns Party (PS) Do not belong to any class
## 752 Centre Party of Finland (KESK) Do not belong to any class
## 753 Centre Party of Finland (KESK) Middle class
## 754 Finns Party (PS) Working class
## 755 Centre Party of Finland (KESK) Middle class
## 756 Finns Party (PS) Middle class
## 757 Some other party or group Middle class
## 758 Christian Democrats (KD) Working class
## 759 Some other party or group Do not belong to any class
## 760 Finns Party (PS) Working class
## 761 Social Democratic Party of Finland (SDP) Upper middle class
## 762 Finns Party (PS) Middle class
## 763 Left Alliance (VAS) Middle class
## 764 Can't say Upper middle class
## 765 Can't say Middle class
## 766 Left Alliance (VAS) Lower middle class
## 767 National Coalition Party (KOK) Middle class
## 768 Would not vote Do not belong to any class
## 769 Social Democratic Party of Finland (SDP) Working class
## 770 Centre Party of Finland (KESK) Do not belong to any class
## 771 Social Democratic Party of Finland (SDP) Lower middle class
## 772 Can't say Upper middle class
## 773 Green League (VIHR) Lower middle class
## 774 Finns Party (PS) Middle class
## 775 Can't say Middle class
## 776 Social Democratic Party of Finland (SDP) Working class
## 777 Finns Party (PS) Middle class
## 778 Social Democratic Party of Finland (SDP) Upper middle class
## 779 Can't say Do not belong to any class
## 780 Finns Party (PS) Upper middle class
## 781 Movement Now (Liike Nyt) Working class
## 782 National Coalition Party (KOK) Upper middle class
## 783 Social Democratic Party of Finland (SDP) Working class
## 784 Centre Party of Finland (KESK) Do not belong to any class
## 785 Social Democratic Party of Finland (SDP) Middle class
## 786 Social Democratic Party of Finland (SDP) Middle class
## 787 Social Democratic Party of Finland (SDP) Working class
## 788 Would not vote Working class
## 789 Would not vote Do not belong to any class
## 790 Swedish People's Party in Finland (RKP) Upper middle class
## 791 National Coalition Party (KOK) Middle class
## 792 Don't want to say Upper middle class
## 793 Centre Party of Finland (KESK) Middle class
## 794 Social Democratic Party of Finland (SDP) Working class
## 795 Some other party or group Do not belong to any class
## 796 Social Democratic Party of Finland (SDP) Working class
## 797 Social Democratic Party of Finland (SDP) Lower middle class
## 798 Don't want to say Middle class
## 799 Green League (VIHR) Upper middle class
## 800 Would not vote Do not belong to any class
## 801 National Coalition Party (KOK) Upper middle class
## 802 National Coalition Party (KOK) Middle class
## 803 National Coalition Party (KOK) Lower middle class
## 804 Green League (VIHR) Do not belong to any class
## 805 Finns Party (PS) Working class
## 806 Can't say Upper middle class
## 807 Green League (VIHR) Do not belong to any class
## 808 Left Alliance (VAS) Working class
## 809 Centre Party of Finland (KESK) Middle class
## 810 Social Democratic Party of Finland (SDP) Do not belong to any class
## 811 Can't say Do not belong to any class
## 812 Green League (VIHR) Do not belong to any class
## 813 Centre Party of Finland (KESK) Middle class
## 814 Centre Party of Finland (KESK) Do not belong to any class
## 815 Finns Party (PS) Do not belong to any class
## 816 Green League (VIHR) Lower middle class
## 817 Social Democratic Party of Finland (SDP) Lower middle class
## 818 Finns Party (PS) Working class
## 819 Swedish People's Party in Finland (RKP) Middle class
## 820 Finns Party (PS) Working class
## 821 Centre Party of Finland (KESK) Upper middle class
## 822 Centre Party of Finland (KESK) Do not belong to any class
## 823 Movement Now (Liike Nyt) Middle class
## 824 Can't say Upper middle class
## 825 Green League (VIHR) Middle class
## 826 National Coalition Party (KOK) Working class
## 827 Finns Party (PS) Lower middle class
## 828 Finns Party (PS) Middle class
## 829 Social Democratic Party of Finland (SDP) Working class
## 830 National Coalition Party (KOK) Middle class
## 831 National Coalition Party (KOK) Working class
## 832 Social Democratic Party of Finland (SDP) Do not belong to any class
## 833 National Coalition Party (KOK) Middle class
## 834 Finns Party (PS) Lower middle class
## 835 Social Democratic Party of Finland (SDP) Working class
## 836 Finns Party (PS) Upper middle class
## 837 Left Alliance (VAS) Working class
## 838 National Coalition Party (KOK) Middle class
## 839 National Coalition Party (KOK) Upper middle class
## 840 Would not vote Working class
## 841 Swedish People's Party in Finland (RKP) Do not belong to any class
## 842 National Coalition Party (KOK) Lower middle class
## 843 Social Democratic Party of Finland (SDP) Lower middle class
## 844 Centre Party of Finland (KESK) Middle class
## 845 Can't say Do not belong to any class
## 846 Can't say Lower middle class
## 847 Can't say Lower middle class
## 848 Centre Party of Finland (KESK) Middle class
## 849 Social Democratic Party of Finland (SDP) Working class
## 850 Centre Party of Finland (KESK) Middle class
## 851 Finns Party (PS) Working class
## 852 Centre Party of Finland (KESK) Working class
## 853 Finns Party (PS) Working class
## 854 Can't say Middle class
## 855 Christian Democrats (KD) Middle class
## 856 Can't say Working class
## 857 National Coalition Party (KOK) Middle class
## 858 Green League (VIHR) Lower middle class
## 859 Finns Party (PS) Upper middle class
## 860 Centre Party of Finland (KESK) Upper middle class
## 861 Can't say Middle class
## 862 National Coalition Party (KOK) Upper middle class
## 863 Social Democratic Party of Finland (SDP) Middle class
## 864 Can't say Middle class
## 865 Social Democratic Party of Finland (SDP) Lower middle class
## 866 Centre Party of Finland (KESK) Middle class
## 867 Left Alliance (VAS) Working class
## 868 Centre Party of Finland (KESK) Middle class
## 869 Can't say Middle class
## 870 Can't say Lower middle class
## 871 Would not vote Middle class
## 872 Don't want to say Lower middle class
## 873 Social Democratic Party of Finland (SDP) Working class
## 874 Can't say Middle class
## 875 National Coalition Party (KOK) Middle class
## 876 Swedish People's Party in Finland (RKP) Upper middle class
## 877 Centre Party of Finland (KESK) Middle class
## 878 National Coalition Party (KOK) Middle class
## 879 Can't say Working class
## 880 Finns Party (PS) Upper middle class
## 881 Left Alliance (VAS) Do not belong to any class
## 882 Centre Party of Finland (KESK) Middle class
## 883 Can't say Working class
## 884 Social Democratic Party of Finland (SDP) Middle class
## 885 National Coalition Party (KOK) Upper middle class
## 886 Left Alliance (VAS) Working class
## 887 Social Democratic Party of Finland (SDP) Do not belong to any class
## 888 Social Democratic Party of Finland (SDP) Working class
## 889 Movement Now (Liike Nyt) Working class
## 890 Finns Party (PS) Do not belong to any class
## 891 Finns Party (PS) Middle class
## 892 Green League (VIHR) Middle class
## 893 Centre Party of Finland (KESK) Working class
## 894 National Coalition Party (KOK) Middle class
## 895 Swedish People's Party in Finland (RKP) Upper middle class
## 896 National Coalition Party (KOK) Upper middle class
## 897 Left Alliance (VAS) Working class
## 898 Left Alliance (VAS) Working class
## 899 Social Democratic Party of Finland (SDP) Middle class
## 900 National Coalition Party (KOK) Middle class
## 901 Swedish People's Party in Finland (RKP) Middle class
## 902 Social Democratic Party of Finland (SDP) Working class
## 903 Can't say Lower middle class
## 904 Finns Party (PS) Lower middle class
## 905 Centre Party of Finland (KESK) Upper middle class
## 906 Finns Party (PS) Lower middle class
## 907 Can't say Do not belong to any class
## 908 Social Democratic Party of Finland (SDP) Lower middle class
## 909 Finns Party (PS) Working class
## 910 Can't say Working class
## 911 Finns Party (PS) Middle class
## 912 National Coalition Party (KOK) Upper class
## 913 Left Alliance (VAS) Working class
## 914 Swedish People's Party in Finland (RKP) Middle class
## 915 Can't say Upper middle class
## 916 Social Democratic Party of Finland (SDP) Working class
## 917 Social Democratic Party of Finland (SDP) Working class
## 918 Finns Party (PS) Middle class
## 919 Finns Party (PS) Lower middle class
## 920 Social Democratic Party of Finland (SDP) Middle class
## 921 Can't say Middle class
## 922 Social Democratic Party of Finland (SDP) Working class
## 923 Social Democratic Party of Finland (SDP) Working class
## 924 Finns Party (PS) Upper middle class
## 925 Movement Now (Liike Nyt) Do not belong to any class
## 926 Centre Party of Finland (KESK) Upper class
## 927 Left Alliance (VAS) Upper middle class
## 928 Finns Party (PS) Middle class
## 929 Movement Now (Liike Nyt) Middle class
## 930 National Coalition Party (KOK) Middle class
## 931 Finns Party (PS) Upper middle class
## 932 Finns Party (PS) Working class
## 933 Social Democratic Party of Finland (SDP) Lower middle class
## 934 Would not vote Do not belong to any class
## 935 Centre Party of Finland (KESK) Middle class
## 936 Can't say Working class
## 937 Movement Now (Liike Nyt) Do not belong to any class
## 938 Can't say Working class
## 939 Social Democratic Party of Finland (SDP) Middle class
## 940 Green League (VIHR) Upper middle class
## 941 Don't want to say Do not belong to any class
## 942 Social Democratic Party of Finland (SDP) Lower middle class
## 943 Centre Party of Finland (KESK) Upper middle class
## 944 Finns Party (PS) Middle class
## 945 Can't say Working class
## 946 Finns Party (PS) Middle class
## 947 Don't want to say Middle class
## 948 Christian Democrats (KD) Lower middle class
## 949 Finns Party (PS) Upper middle class
## 950 Finns Party (PS) Working class
## 951 Movement Now (Liike Nyt) Middle class
## 952 National Coalition Party (KOK) Middle class
## 953 Can't say Upper middle class
## 954 Green League (VIHR) Working class
## 955 Can't say Working class
## 956 Left Alliance (VAS) Middle class
## 957 Can't say Lower middle class
## 958 Can't say Middle class
## 959 Finns Party (PS) Lower middle class
## 960 Would not vote Middle class
## 961 Finns Party (PS) Working class
## 962 National Coalition Party (KOK) Middle class
## 963 Finns Party (PS) Middle class
## 964 Would not vote Upper middle class
## 965 Would not vote Do not belong to any class
## 966 Social Democratic Party of Finland (SDP) Middle class
## 967 National Coalition Party (KOK) Middle class
## 968 Green League (VIHR) Middle class
## 969 Can't say Middle class
## 970 Social Democratic Party of Finland (SDP) Working class
## 971 Movement Now (Liike Nyt) Middle class
## 972 Centre Party of Finland (KESK) Do not belong to any class
## 973 Social Democratic Party of Finland (SDP) Working class
## 974 Social Democratic Party of Finland (SDP) Working class
## 975 Centre Party of Finland (KESK) Middle class
## 976 Finns Party (PS) Middle class
## 977 National Coalition Party (KOK) Do not belong to any class
## 978 Left Alliance (VAS) Middle class
## 979 Social Democratic Party of Finland (SDP) Working class
## 980 Can't say Working class
## 981 Can't say Middle class
## 982 Social Democratic Party of Finland (SDP) Working class
## 983 Can't say Do not belong to any class
## 984 Can't say Working class
## 985 Social Democratic Party of Finland (SDP) Middle class
## 986 National Coalition Party (KOK) Lower middle class
## 987 Left Alliance (VAS) Working class
## 988 Finns Party (PS) Middle class
## 989 Social Democratic Party of Finland (SDP) Do not belong to any class
## 990 Centre Party of Finland (KESK) Lower middle class
## 991 Some other party or group Working class
## 992 Social Democratic Party of Finland (SDP) Working class
## 993 National Coalition Party (KOK) Middle class
## 994 Christian Democrats (KD) Middle class
## 995 Centre Party of Finland (KESK) Do not belong to any class
## 996 Centre Party of Finland (KESK) Middle class
## 997 Finns Party (PS) Working class
## 998 Finns Party (PS) Working class
## 999 Can't say Do not belong to any class
## 1000 Social Democratic Party of Finland (SDP) Working class
## 1001 Can't say Middle class
## 1002 Social Democratic Party of Finland (SDP) Working class
## 1003 Left Alliance (VAS) Working class
## 1004 Left Alliance (VAS) Upper middle class
## 1005 Green League (VIHR) Middle class
## 1006 Green League (VIHR) Upper middle class
## 1007 Can't say Working class
## 1008 Finns Party (PS) Working class
## 1009 Centre Party of Finland (KESK) Upper middle class
## 1010 Left Alliance (VAS) Working class
## 1011 Social Democratic Party of Finland (SDP) Middle class
## 1012 Green League (VIHR) Do not belong to any class
## 1013 Can't say Do not belong to any class
## 1014 Don't want to say Working class
## 1015 Can't say Upper middle class
## 1016 Can't say Upper middle class
## 1017 Can't say Lower middle class
## 1018 Centre Party of Finland (KESK) Working class
## 1019 Centre Party of Finland (KESK) Do not belong to any class
## 1020 Finns Party (PS) Middle class
## 1021 Left Alliance (VAS) Lower middle class
## 1022 Can't say Working class
## 1023 Can't say Middle class
## 1024 Finns Party (PS) Lower middle class
## 1025 Centre Party of Finland (KESK) Working class
## 1026 Green League (VIHR) Middle class
## 1027 Left Alliance (VAS) Working class
## 1028 Left Alliance (VAS) Working class
## 1029 Can't say Working class
## 1030 Christian Democrats (KD) Upper middle class
## 1031 Left Alliance (VAS) Lower middle class
## 1032 Christian Democrats (KD) Working class
## 1033 Left Alliance (VAS) Do not belong to any class
## 1034 National Coalition Party (KOK) Middle class
## 1035 Social Democratic Party of Finland (SDP) Working class
## 1036 Social Democratic Party of Finland (SDP) Middle class
## 1037 Can't say Middle class
## 1038 Finns Party (PS) Middle class
## 1039 National Coalition Party (KOK) Middle class
## 1040 Green League (VIHR) Middle class
## 1041 Can't say Working class
## 1042 Left Alliance (VAS) Working class
## 1043 Social Democratic Party of Finland (SDP) Working class
## 1044 Green League (VIHR) Lower middle class
## 1045 Left Alliance (VAS) Working class
## 1046 Finns Party (PS) Working class
## 1047 National Coalition Party (KOK) Lower middle class
## 1048 Finns Party (PS) Middle class
## 1049 Social Democratic Party of Finland (SDP) Working class
## 1050 Social Democratic Party of Finland (SDP) Middle class
## 1051 Left Alliance (VAS) Working class
## 1052 Finns Party (PS) Middle class
## 1053 National Coalition Party (KOK) Upper middle class
## 1054 Social Democratic Party of Finland (SDP) Working class
## 1055 Centre Party of Finland (KESK) Middle class
## 1056 Finns Party (PS) Middle class
## 1057 Social Democratic Party of Finland (SDP) Lower middle class
## 1058 Centre Party of Finland (KESK) Middle class
## 1059 Can't say Lower middle class
## 1060 National Coalition Party (KOK) Middle class
## 1061 Social Democratic Party of Finland (SDP) Upper middle class
## 1062 Centre Party of Finland (KESK) Upper middle class
## 1063 Would not vote Working class
## 1064 Social Democratic Party of Finland (SDP) Middle class
## 1065 Finns Party (PS) Do not belong to any class
## 1066 Left Alliance (VAS) Lower middle class
## 1067 Can't say Middle class
## 1068 Left Alliance (VAS) Working class
## 1069 Can't say Do not belong to any class
## 1070 Would not vote Lower middle class
## 1071 Would not vote Do not belong to any class
## 1072 Social Democratic Party of Finland (SDP) Working class
## 1073 Social Democratic Party of Finland (SDP) Middle class
## 1074 Finns Party (PS) Middle class
## 1075 Finns Party (PS) Working class
## 1076 National Coalition Party (KOK) Middle class
## 1077 National Coalition Party (KOK) Do not belong to any class
## 1078 National Coalition Party (KOK) Lower middle class
## 1079 Can't say Lower middle class
## 1080 Can't say Do not belong to any class
## 1081 Finns Party (PS) Middle class
## 1082 National Coalition Party (KOK) Middle class
## 1083 Centre Party of Finland (KESK) Working class
## 1084 National Coalition Party (KOK) Upper middle class
## 1085 Finns Party (PS) Middle class
## 1086 Centre Party of Finland (KESK) Middle class
## 1087 Left Alliance (VAS) Lower middle class
## 1088 Can't say Do not belong to any class
## 1089 National Coalition Party (KOK) Upper middle class
## 1090 Finns Party (PS) Working class
## 1091 Centre Party of Finland (KESK) Do not belong to any class
## 1092 Social Democratic Party of Finland (SDP) Working class
## 1093 Left Alliance (VAS) Middle class
## 1094 Left Alliance (VAS) Working class
## 1095 Finns Party (PS) Working class
## 1096 Some other party or group Working class
## 1097 Don't want to say Working class
## 1098 Centre Party of Finland (KESK) Middle class
## 1099 Centre Party of Finland (KESK) Upper middle class
## 1100 Don't want to say Do not belong to any class
## 1101 National Coalition Party (KOK) Middle class
## 1102 Social Democratic Party of Finland (SDP) Middle class
## 1103 Can't say Lower middle class
## 1104 Social Democratic Party of Finland (SDP) Middle class
## 1105 Left Alliance (VAS) Middle class
## 1106 Social Democratic Party of Finland (SDP) Lower middle class
## 1107 Social Democratic Party of Finland (SDP) Lower middle class
## 1108 Can't say Middle class
## 1109 Don't want to say Do not belong to any class
## 1110 Finns Party (PS) Working class
## 1111 Social Democratic Party of Finland (SDP) Middle class
## 1112 Green League (VIHR) Working class
## 1113 Can't say Middle class
## 1114 Green League (VIHR) Upper middle class
## 1115 Finns Party (PS) Lower middle class
## 1116 Green League (VIHR) Do not belong to any class
## 1117 Finns Party (PS) Middle class
## 1118 National Coalition Party (KOK) Working class
## 1119 Left Alliance (VAS) Middle class
## 1120 Finns Party (PS) Working class
## 1121 Left Alliance (VAS) Lower middle class
## 1122 Finns Party (PS) Middle class
## 1123 Finns Party (PS) Working class
## 1124 Finns Party (PS) Working class
## 1125 Finns Party (PS) Working class
## 1126 Left Alliance (VAS) Working class
## 1127 Finns Party (PS) Do not belong to any class
## 1128 Finns Party (PS) Lower middle class
## 1129 Finns Party (PS) Middle class
## 1130 Green League (VIHR) Upper middle class
## 1131 Social Democratic Party of Finland (SDP) Middle class
## 1132 Centre Party of Finland (KESK) Upper middle class
## 1133 Can't say Do not belong to any class
## 1134 National Coalition Party (KOK) Upper middle class
## 1135 Can't say Upper middle class
## 1136 Finns Party (PS) Middle class
## 1137 National Coalition Party (KOK) Working class
## 1138 Social Democratic Party of Finland (SDP) Working class
## 1139 Finns Party (PS) Middle class
## 1140 National Coalition Party (KOK) Upper middle class
## 1141 Finns Party (PS) Middle class
## 1142 Some other party or group Middle class
## 1143 Social Democratic Party of Finland (SDP) Middle class
## 1144 Left Alliance (VAS) Do not belong to any class
## 1145 Centre Party of Finland (KESK) Middle class
## 1146 Left Alliance (VAS) Working class
## 1147 Finns Party (PS) Do not belong to any class
## 1148 Can't say Working class
## 1149 Movement Now (Liike Nyt) Upper middle class
## 1150 Social Democratic Party of Finland (SDP) Working class
## 1151 Finns Party (PS) Working class
## 1152 Green League (VIHR) Working class
## 1153 Green League (VIHR) Working class
## 1154 Social Democratic Party of Finland (SDP) Middle class
## 1155 Swedish People's Party in Finland (RKP) Working class
## 1156 Christian Democrats (KD) Do not belong to any class
## 1157 Centre Party of Finland (KESK) Middle class
## 1158 Centre Party of Finland (KESK) Working class
## 1159 Green League (VIHR) Middle class
## 1160 Can't say Middle class
## 1161 Social Democratic Party of Finland (SDP) Middle class
## 1162 Green League (VIHR) Do not belong to any class
## 1163 National Coalition Party (KOK) Middle class
## 1164 Social Democratic Party of Finland (SDP) Lower middle class
## 1165 National Coalition Party (KOK) Middle class
## 1166 Can't say Do not belong to any class
## 1167 Social Democratic Party of Finland (SDP) Working class
## 1168 Finns Party (PS) Do not belong to any class
## 1169 Finns Party (PS) Do not belong to any class
## 1170 Left Alliance (VAS) Middle class
## 1171 National Coalition Party (KOK) Middle class
## 1172 National Coalition Party (KOK) Lower middle class
## 1173 Social Democratic Party of Finland (SDP) Middle class
## 1174 Finns Party (PS) Upper middle class
## 1175 Finns Party (PS) Do not belong to any class
## 1176 Left Alliance (VAS) Do not belong to any class
## 1177 Finns Party (PS) Middle class
## 1178 Finns Party (PS) Working class
## 1179 Centre Party of Finland (KESK) Working class
## 1180 Green League (VIHR) Lower middle class
## 1181 Finns Party (PS) Middle class
## 1182 Finns Party (PS) Lower middle class
## 1183 Can't say Working class
## 1184 Social Democratic Party of Finland (SDP) Working class
## 1185 National Coalition Party (KOK) Middle class
## 1186 Finns Party (PS) Middle class
## 1187 Finns Party (PS) Working class
## 1188 Green League (VIHR) Middle class
## 1189 Can't say Working class
## 1190 Finns Party (PS) Lower middle class
## 1191 Finns Party (PS) Working class
## 1192 Green League (VIHR) Middle class
## 1193 Finns Party (PS) Middle class
## 1194 Social Democratic Party of Finland (SDP) Middle class
## 1195 Centre Party of Finland (KESK) Working class
## 1196 Centre Party of Finland (KESK) Middle class
## 1197 Finns Party (PS) Upper middle class
## 1198 Social Democratic Party of Finland (SDP) Middle class
## 1199 National Coalition Party (KOK) Middle class
## 1200 Finns Party (PS) Working class
## 1201 Green League (VIHR) Do not belong to any class
## 1202 Centre Party of Finland (KESK) Lower middle class
## 1203 Some other party or group Middle class
## 1204 Finns Party (PS) Middle class
## 1205 Left Alliance (VAS) Working class
## 1206 Green League (VIHR) Middle class
## 1207 Finns Party (PS) Middle class
## 1208 Centre Party of Finland (KESK) Lower middle class
## 1209 Christian Democrats (KD) Lower middle class
## 1210 Left Alliance (VAS) Do not belong to any class
## 1211 Finns Party (PS) Lower middle class
## 1212 Social Democratic Party of Finland (SDP) Lower middle class
## 1213 Finns Party (PS) Working class
## 1214 Social Democratic Party of Finland (SDP) Lower middle class
## 1215 National Coalition Party (KOK) Middle class
## 1216 Green League (VIHR) Lower middle class
## 1217 Social Democratic Party of Finland (SDP) Upper middle class
## 1218 Can't say Middle class
## 1219 Left Alliance (VAS) Lower middle class
## 1220 Finns Party (PS) Do not belong to any class
## 1221 Finns Party (PS) Middle class
## 1222 Movement Now (Liike Nyt) Upper middle class
## 1223 Finns Party (PS) Do not belong to any class
## 1224 Social Democratic Party of Finland (SDP) Working class
## 1225 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1226 Can't say Working class
## 1227 Social Democratic Party of Finland (SDP) Working class
## 1228 Movement Now (Liike Nyt) Middle class
## 1229 National Coalition Party (KOK) Upper middle class
## 1230 Left Alliance (VAS) Middle class
## 1231 Can't say Working class
## 1232 Can't say Working class
## 1233 Social Democratic Party of Finland (SDP) Middle class
## 1234 Can't say Working class
## 1235 National Coalition Party (KOK) Middle class
## 1236 Left Alliance (VAS) Working class
## 1237 Can't say Do not belong to any class
## 1238 National Coalition Party (KOK) Upper middle class
## 1239 Can't say Middle class
## 1240 Green League (VIHR) Upper middle class
## 1241 National Coalition Party (KOK) Upper middle class
## 1242 Social Democratic Party of Finland (SDP) Working class
## 1243 National Coalition Party (KOK) Upper middle class
## 1244 Finns Party (PS) Middle class
## 1245 Finns Party (PS) Do not belong to any class
## 1246 Left Alliance (VAS) Lower middle class
## 1247 Green League (VIHR) Working class
## 1248 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1249 Finns Party (PS) Lower middle class
## 1250 Left Alliance (VAS) Lower middle class
## 1251 Can't say Middle class
## 1252 Centre Party of Finland (KESK) Middle class
## 1253 Social Democratic Party of Finland (SDP) Middle class
## 1254 Finns Party (PS) Do not belong to any class
## 1255 Finns Party (PS) Do not belong to any class
## 1256 Movement Now (Liike Nyt) Upper middle class
## 1257 Social Democratic Party of Finland (SDP) Middle class
## 1258 Social Democratic Party of Finland (SDP) Upper middle class
## 1259 Finns Party (PS) Lower middle class
## 1260 Social Democratic Party of Finland (SDP) Upper middle class
## 1261 Would not vote Lower middle class
## 1262 Finns Party (PS) Lower middle class
## 1263 Can't say Working class
## 1264 Can't say Middle class
## 1265 Green League (VIHR) Middle class
## 1266 Movement Now (Liike Nyt) Working class
## 1267 Finns Party (PS) Working class
## 1268 Centre Party of Finland (KESK) Middle class
## 1269 Finns Party (PS) Lower middle class
## 1270 National Coalition Party (KOK) Working class
## 1271 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1272 Left Alliance (VAS) Middle class
## 1273 Finns Party (PS) Middle class
## 1274 Left Alliance (VAS) Do not belong to any class
## 1275 Social Democratic Party of Finland (SDP) Working class
## 1276 National Coalition Party (KOK) Upper middle class
## 1277 National Coalition Party (KOK) Middle class
## 1278 Don't want to say Lower middle class
## 1279 Can't say Do not belong to any class
## 1280 Movement Now (Liike Nyt) Middle class
## 1281 Finns Party (PS) Middle class
## 1282 Social Democratic Party of Finland (SDP) Middle class
## 1283 Social Democratic Party of Finland (SDP) Working class
## 1284 Swedish People's Party in Finland (RKP) Upper middle class
## 1285 National Coalition Party (KOK) Upper class
## 1286 Green League (VIHR) Lower middle class
## 1287 Finns Party (PS) Middle class
## 1288 National Coalition Party (KOK) Middle class
## 1289 Finns Party (PS) Working class
## 1290 Finns Party (PS) Lower middle class
## 1291 Left Alliance (VAS) Middle class
## 1292 Finns Party (PS) Lower middle class
## 1293 Left Alliance (VAS) Middle class
## 1294 Christian Democrats (KD) Working class
## 1295 Don't want to say Lower middle class
## 1296 Can't say Middle class
## 1297 Social Democratic Party of Finland (SDP) Middle class
## 1298 Social Democratic Party of Finland (SDP) Middle class
## 1299 Finns Party (PS) Working class
## 1300 Finns Party (PS) Upper middle class
## 1301 National Coalition Party (KOK) Middle class
## 1302 Finns Party (PS) Working class
## 1303 Finns Party (PS) Middle class
## 1304 Social Democratic Party of Finland (SDP) Upper middle class
## 1305 Can't say Middle class
## 1306 Can't say Middle class
## 1307 Social Democratic Party of Finland (SDP) Upper middle class
## 1308 Left Alliance (VAS) Do not belong to any class
## 1309 National Coalition Party (KOK) Upper middle class
## 1310 Christian Democrats (KD) Middle class
## 1311 Social Democratic Party of Finland (SDP) Working class
## 1312 Can't say Lower middle class
## 1313 Centre Party of Finland (KESK) Upper middle class
## 1314 National Coalition Party (KOK) Upper middle class
## 1315 Social Democratic Party of Finland (SDP) Middle class
## 1316 National Coalition Party (KOK) Upper middle class
## 1317 Finns Party (PS) Lower middle class
## 1318 Left Alliance (VAS) Working class
## 1319 National Coalition Party (KOK) Middle class
## 1320 Left Alliance (VAS) Do not belong to any class
## 1321 Movement Now (Liike Nyt) Working class
## 1322 Finns Party (PS) Working class
## 1323 National Coalition Party (KOK) Middle class
## 1324 Would not vote Working class
## 1325 Green League (VIHR) Do not belong to any class
## 1326 Left Alliance (VAS) Lower middle class
## 1327 Would not vote Do not belong to any class
## 1328 Finns Party (PS) Working class
## 1329 Left Alliance (VAS) Lower middle class
## 1330 Can't say Working class
## 1331 Green League (VIHR) Middle class
## 1332 Green League (VIHR) Middle class
## 1333 Can't say Working class
## 1334 Finns Party (PS) Lower middle class
## 1335 Left Alliance (VAS) Working class
## 1336 Would not vote Lower middle class
## 1337 Finns Party (PS) Working class
## 1338 Can't say Middle class
## 1339 Would not vote Do not belong to any class
## 1340 Can't say Working class
## 1341 Would not vote Do not belong to any class
## 1342 Centre Party of Finland (KESK) Upper middle class
## 1343 Can't say Working class
## 1344 Can't say Middle class
## 1345 National Coalition Party (KOK) Middle class
## 1346 Finns Party (PS) Working class
## 1347 Christian Democrats (KD) Middle class
## 1348 Can't say Working class
## 1349 Social Democratic Party of Finland (SDP) Middle class
## 1350 Centre Party of Finland (KESK) Do not belong to any class
## 1351 National Coalition Party (KOK) Upper middle class
## 1352 National Coalition Party (KOK) Upper middle class
## 1353 National Coalition Party (KOK) Do not belong to any class
## 1354 Green League (VIHR) Middle class
## 1355 Social Democratic Party of Finland (SDP) Middle class
## 1356 Can't say Lower middle class
## 1357 Finns Party (PS) Upper middle class
## 1358 Don't want to say Do not belong to any class
## 1359 Finns Party (PS) Working class
## 1360 Christian Democrats (KD) Lower middle class
## 1361 Social Democratic Party of Finland (SDP) Working class
## 1362 Movement Now (Liike Nyt) Middle class
## 1363 Would not vote Working class
## 1364 Would not vote Do not belong to any class
## 1365 Finns Party (PS) Middle class
## 1366 Some other party or group Do not belong to any class
## 1367 Can't say Middle class
## 1368 Left Alliance (VAS) Middle class
## 1369 Can't say Working class
## 1370 Finns Party (PS) Working class
## 1371 Would not vote Do not belong to any class
## 1372 Social Democratic Party of Finland (SDP) Working class
## 1373 Green League (VIHR) Lower middle class
## 1374 Finns Party (PS) Working class
## 1375 Social Democratic Party of Finland (SDP) Lower middle class
## 1376 Would not vote Working class
## 1377 Can't say Working class
## 1378 Social Democratic Party of Finland (SDP) Middle class
## 1379 Social Democratic Party of Finland (SDP) Middle class
## 1380 Finns Party (PS) Working class
## 1381 Finns Party (PS) Lower middle class
## 1382 Finns Party (PS) Do not belong to any class
## 1383 Can't say Upper middle class
## 1384 Finns Party (PS) Do not belong to any class
## 1385 Movement Now (Liike Nyt) Lower middle class
## 1386 Can't say Do not belong to any class
## 1387 Finns Party (PS) Working class
## 1388 Can't say Middle class
## 1389 Finns Party (PS) Working class
## 1390 Green League (VIHR) Middle class
## 1391 Green League (VIHR) Working class
## 1392 Some other party or group Lower middle class
## 1393 National Coalition Party (KOK) Middle class
## 1394 Would not vote Working class
## 1395 Don't want to say Working class
## 1396 Centre Party of Finland (KESK) Middle class
## 1397 Can't say Lower middle class
## 1398 Can't say Do not belong to any class
## 1399 Don't want to say Working class
## 1400 Can't say Upper middle class
## 1401 Would not vote Do not belong to any class
## 1402 Social Democratic Party of Finland (SDP) Working class
## 1403 Some other party or group Do not belong to any class
## 1404 Can't say Working class
## 1405 Finns Party (PS) Upper middle class
## 1406 Can't say Middle class
## 1407 Would not vote Do not belong to any class
## 1408 Social Democratic Party of Finland (SDP) Working class
## 1409 Social Democratic Party of Finland (SDP) Middle class
## 1410 National Coalition Party (KOK) Middle class
## 1411 Social Democratic Party of Finland (SDP) Middle class
## 1412 Green League (VIHR) Middle class
## 1413 National Coalition Party (KOK) Middle class
## 1414 Can't say Middle class
## 1415 Green League (VIHR) Working class
## 1416 Can't say Working class
## 1417 Finns Party (PS) Lower middle class
## 1418 Left Alliance (VAS) Working class
## 1419 Social Democratic Party of Finland (SDP) Lower middle class
## 1420 National Coalition Party (KOK) Middle class
## 1421 Finns Party (PS) Do not belong to any class
## 1422 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1423 Can't say Upper middle class
## 1424 National Coalition Party (KOK) Upper middle class
## 1425 Can't say Do not belong to any class
## 1426 Left Alliance (VAS) Do not belong to any class
## 1427 Social Democratic Party of Finland (SDP) Middle class
## 1428 Social Democratic Party of Finland (SDP) Middle class
## 1429 Would not vote Lower middle class
## 1430 Green League (VIHR) Do not belong to any class
## 1431 Finns Party (PS) Working class
## 1432 Can't say Middle class
## 1433 Green League (VIHR) Do not belong to any class
## 1434 Finns Party (PS) Do not belong to any class
## 1435 Movement Now (Liike Nyt) Middle class
## 1436 Left Alliance (VAS) Do not belong to any class
## 1437 Can't say Middle class
## 1438 Green League (VIHR) Lower middle class
## 1439 Can't say Lower middle class
## 1440 Green League (VIHR) Lower middle class
## 1441 Finns Party (PS) Middle class
## 1442 Can't say Do not belong to any class
## 1443 Social Democratic Party of Finland (SDP) Lower middle class
## 1444 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1445 Social Democratic Party of Finland (SDP) Middle class
## 1446 Would not vote Working class
## 1447 Green League (VIHR) Do not belong to any class
## 1448 Green League (VIHR) Middle class
## 1449 National Coalition Party (KOK) Middle class
## 1450 Finns Party (PS) Do not belong to any class
## 1451 National Coalition Party (KOK) Upper middle class
## 1452 Finns Party (PS) Upper middle class
## 1453 Can't say Lower middle class
## 1454 Can't say Do not belong to any class
## 1455 Social Democratic Party of Finland (SDP) Lower middle class
## 1456 Left Alliance (VAS) Working class
## 1457 Green League (VIHR) Middle class
## 1458 Green League (VIHR) Middle class
## 1459 Centre Party of Finland (KESK) Middle class
## 1460 Left Alliance (VAS) Do not belong to any class
## 1461 Can't say Lower middle class
## 1462 Left Alliance (VAS) Do not belong to any class
## 1463 Green League (VIHR) Middle class
## 1464 Finns Party (PS) Working class
## 1465 Centre Party of Finland (KESK) Working class
## 1466 Green League (VIHR) Middle class
## 1467 Centre Party of Finland (KESK) Middle class
## 1468 Can't say Lower middle class
## 1469 Finns Party (PS) Middle class
## 1470 Social Democratic Party of Finland (SDP) Working class
## 1471 National Coalition Party (KOK) Lower middle class
## 1472 Green League (VIHR) Do not belong to any class
## 1473 National Coalition Party (KOK) Upper class
## 1474 Finns Party (PS) Middle class
## 1475 Can't say Working class
## 1476 Finns Party (PS) Working class
## 1477 Centre Party of Finland (KESK) Middle class
## 1478 Can't say Middle class
## 1479 Social Democratic Party of Finland (SDP) Middle class
## 1480 Finns Party (PS) Working class
## 1481 Finns Party (PS) Middle class
## 1482 Social Democratic Party of Finland (SDP) Middle class
## 1483 Finns Party (PS) Middle class
## 1484 Don't want to say Do not belong to any class
## 1485 Can't say Do not belong to any class
## 1486 National Coalition Party (KOK) Lower middle class
## 1487 Can't say Working class
## 1488 Christian Democrats (KD) Upper middle class
## 1489 Finns Party (PS) Working class
## 1490 Can't say Working class
## 1491 Can't say Middle class
## 1492 Centre Party of Finland (KESK) Middle class
## 1493 Centre Party of Finland (KESK) Middle class
## 1494 Left Alliance (VAS) Working class
## 1495 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1496 Can't say Upper middle class
## 1497 Finns Party (PS) Do not belong to any class
## 1498 Finns Party (PS) Working class
## 1499 Can't say Middle class
## 1500 Green League (VIHR) Upper middle class
## 1501 Left Alliance (VAS) Working class
## 1502 Can't say Middle class
## 1503 Social Democratic Party of Finland (SDP) Lower middle class
## 1504 Would not vote Upper middle class
## 1505 Green League (VIHR) Middle class
## 1506 Finns Party (PS) Do not belong to any class
## 1507 Green League (VIHR) Upper middle class
## 1508 Finns Party (PS) Upper middle class
## 1509 Can't say Lower middle class
## 1510 Centre Party of Finland (KESK) Do not belong to any class
## 1511 National Coalition Party (KOK) Upper middle class
## 1512 Left Alliance (VAS) Working class
## 1513 Social Democratic Party of Finland (SDP) Middle class
## 1514 Can't say Working class
## 1515 Finns Party (PS) Working class
## 1516 Green League (VIHR) Upper middle class
## 1517 Left Alliance (VAS) Working class
## 1518 Can't say Middle class
## 1519 Can't say Middle class
## 1520 Green League (VIHR) Middle class
## 1521 Finns Party (PS) Do not belong to any class
## 1522 Christian Democrats (KD) Upper middle class
## 1523 Green League (VIHR) Working class
## 1524 National Coalition Party (KOK) Do not belong to any class
## 1525 Left Alliance (VAS) Working class
## 1526 Left Alliance (VAS) Middle class
## 1527 Finns Party (PS) Upper middle class
## 1528 Finns Party (PS) Lower middle class
## 1529 Social Democratic Party of Finland (SDP) Working class
## 1530 Finns Party (PS) Working class
## 1531 Finns Party (PS) Working class
## 1532 Left Alliance (VAS) Working class
## 1533 Social Democratic Party of Finland (SDP) Upper middle class
## 1534 Green League (VIHR) Middle class
## 1535 Finns Party (PS) Middle class
## 1536 Social Democratic Party of Finland (SDP) Working class
## 1537 Social Democratic Party of Finland (SDP) Upper middle class
## 1538 Finns Party (PS) Lower middle class
## 1539 Green League (VIHR) Middle class
## 1540 Left Alliance (VAS) Lower middle class
## 1541 National Coalition Party (KOK) Upper middle class
## 1542 Left Alliance (VAS) Working class
## 1543 Finns Party (PS) Middle class
## 1544 Social Democratic Party of Finland (SDP) Working class
## 1545 National Coalition Party (KOK) Lower middle class
## 1546 Swedish People's Party in Finland (RKP) Middle class
## 1547 Can't say Upper middle class
## 1548 Centre Party of Finland (KESK) Upper middle class
## 1549 Social Democratic Party of Finland (SDP) Lower middle class
## 1550 Some other party or group Middle class
## 1551 Movement Now (Liike Nyt) Working class
## 1552 Finns Party (PS) Middle class
## 1553 Finns Party (PS) Do not belong to any class
## 1554 Finns Party (PS) Lower middle class
## 1555 Finns Party (PS) Working class
## 1556 Left Alliance (VAS) Working class
## 1557 Don't want to say Do not belong to any class
## 1558 Green League (VIHR) Middle class
## 1559 Left Alliance (VAS) Working class
## 1560 National Coalition Party (KOK) Upper middle class
## 1561 National Coalition Party (KOK) Middle class
## 1562 National Coalition Party (KOK) Do not belong to any class
## 1563 Green League (VIHR) Upper middle class
## 1564 Left Alliance (VAS) Working class
## 1565 Would not vote Do not belong to any class
## 1566 Green League (VIHR) Upper middle class
## 1567 Left Alliance (VAS) Working class
## 1568 Green League (VIHR) Middle class
## 1569 Social Democratic Party of Finland (SDP) Middle class
## 1570 National Coalition Party (KOK) Do not belong to any class
## 1571 Green League (VIHR) Working class
## 1572 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1573 Can't say Do not belong to any class
## 1574 Social Democratic Party of Finland (SDP) Working class
## 1575 Finns Party (PS) Lower middle class
## 1576 Finns Party (PS) Working class
## 1577 Christian Democrats (KD) Do not belong to any class
## 1578 Green League (VIHR) Do not belong to any class
## 1579 Centre Party of Finland (KESK) Do not belong to any class
## 1580 Green League (VIHR) Middle class
## 1581 Can't say Middle class
## 1582 Finns Party (PS) Lower middle class
## 1583 Green League (VIHR) Do not belong to any class
## 1584 Left Alliance (VAS) Lower middle class
## 1585 Can't say Working class
## 1586 Social Democratic Party of Finland (SDP) Working class
## 1587 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1588 Finns Party (PS) Working class
## 1589 Green League (VIHR) Do not belong to any class
## 1590 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1591 Can't say Middle class
## 1592 Christian Democrats (KD) Upper middle class
## 1593 Social Democratic Party of Finland (SDP) Working class
## 1594 Green League (VIHR) Middle class
## 1595 Some other party or group Middle class
## 1596 Left Alliance (VAS) Lower middle class
## 1597 Can't say Do not belong to any class
## 1598 Centre Party of Finland (KESK) Middle class
## 1599 Social Democratic Party of Finland (SDP) Working class
## 1600 Swedish People's Party in Finland (RKP) Working class
## 1601 National Coalition Party (KOK) Upper middle class
## 1602 National Coalition Party (KOK) Middle class
## 1603 Can't say Do not belong to any class
## 1604 Can't say Middle class
## 1605 Can't say Do not belong to any class
## 1606 Would not vote Working class
## 1607 Finns Party (PS) Working class
## 1608 Can't say Working class
## 1609 Can't say Working class
## 1610 National Coalition Party (KOK) Do not belong to any class
## 1611 National Coalition Party (KOK) Upper middle class
## 1612 Social Democratic Party of Finland (SDP) Upper middle class
## 1613 Social Democratic Party of Finland (SDP) Working class
## 1614 Left Alliance (VAS) Middle class
## 1615 Social Democratic Party of Finland (SDP) Middle class
## 1616 Social Democratic Party of Finland (SDP) Working class
## 1617 Green League (VIHR) Do not belong to any class
## 1618 Left Alliance (VAS) Middle class
## 1619 Green League (VIHR) Middle class
## 1620 Can't say Do not belong to any class
## 1621 Finns Party (PS) Working class
## 1622 National Coalition Party (KOK) Working class
## 1623 Would not vote Do not belong to any class
## 1624 National Coalition Party (KOK) Middle class
## 1625 Centre Party of Finland (KESK) Lower middle class
## 1626 Centre Party of Finland (KESK) Middle class
## 1627 Social Democratic Party of Finland (SDP) Working class
## 1628 Can't say Middle class
## 1629 Would not vote Do not belong to any class
## 1630 Green League (VIHR) Lower middle class
## 1631 National Coalition Party (KOK) Middle class
## 1632 Social Democratic Party of Finland (SDP) Working class
## 1633 National Coalition Party (KOK) Middle class
## 1634 Green League (VIHR) Upper middle class
## 1635 Can't say Working class
## 1636 Green League (VIHR) Middle class
## 1637 Green League (VIHR) Middle class
## 1638 Finns Party (PS) Working class
## 1639 Would not vote Do not belong to any class
## 1640 Don't want to say Do not belong to any class
## 1641 Can't say Middle class
## 1642 Left Alliance (VAS) Lower middle class
## 1643 Can't say Do not belong to any class
## 1644 Swedish People's Party in Finland (RKP) Middle class
## 1645 Swedish People's Party in Finland (RKP) Do not belong to any class
## 1646 Centre Party of Finland (KESK) Upper middle class
## 1647 Some other party or group Working class
## 1648 National Coalition Party (KOK) Working class
## 1649 Don't want to say Do not belong to any class
## 1650 Finns Party (PS) Lower middle class
## 1651 Social Democratic Party of Finland (SDP) Working class
## 1652 Swedish People's Party in Finland (RKP) Do not belong to any class
## 1653 Green League (VIHR) Middle class
## 1654 Can't say Middle class
## 1655 Don't want to say Do not belong to any class
## 1656 Green League (VIHR) Upper middle class
## 1657 Left Alliance (VAS) Do not belong to any class
## 1658 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1659 National Coalition Party (KOK) Middle class
## 1660 Finns Party (PS) Do not belong to any class
## 1661 National Coalition Party (KOK) Do not belong to any class
## 1662 National Coalition Party (KOK) Do not belong to any class
## 1663 Left Alliance (VAS) Working class
## 1664 Social Democratic Party of Finland (SDP) Middle class
## 1665 Can't say Do not belong to any class
## 1666 Green League (VIHR) Working class
## 1667 National Coalition Party (KOK) Lower middle class
## 1668 National Coalition Party (KOK) Lower middle class
## 1669 Swedish People's Party in Finland (RKP) Do not belong to any class
## 1670 Social Democratic Party of Finland (SDP) Middle class
## 1671 Finns Party (PS) Do not belong to any class
## 1672 Can't say Lower middle class
## 1673 Can't say Lower middle class
## 1674 Can't say Lower middle class
## 1675 National Coalition Party (KOK) Lower middle class
## 1676 Can't say Do not belong to any class
## 1677 Centre Party of Finland (KESK) Middle class
## 1678 Green League (VIHR) Do not belong to any class
## 1679 Some other party or group Do not belong to any class
## 1680 Can't say Upper middle class
## 1681 Don't want to say Do not belong to any class
## 1682 Finns Party (PS) Middle class
## 1683 National Coalition Party (KOK) Lower middle class
## 1684 Green League (VIHR) Middle class
## 1685 Social Democratic Party of Finland (SDP) Working class
## 1686 Finns Party (PS) Working class
## 1687 National Coalition Party (KOK) Upper middle class
## 1688 Social Democratic Party of Finland (SDP) Working class
## 1689 Green League (VIHR) Middle class
## 1690 Can't say Upper middle class
## 1691 Green League (VIHR) Upper middle class
## 1692 Green League (VIHR) Do not belong to any class
## 1693 Centre Party of Finland (KESK) Middle class
## 1694 Social Democratic Party of Finland (SDP) Lower middle class
## 1695 Centre Party of Finland (KESK) Middle class
## 1696 Can't say Middle class
## 1697 Green League (VIHR) Middle class
## 1698 Centre Party of Finland (KESK) Middle class
## 1699 Don't want to say Working class
## 1700 Green League (VIHR) Upper class
## 1701 Centre Party of Finland (KESK) Upper middle class
## 1702 Green League (VIHR) Do not belong to any class
## 1703 Can't say Middle class
## 1704 Would not vote Do not belong to any class
## 1705 Can't say Do not belong to any class
## 1706 Finns Party (PS) Do not belong to any class
## 1707 Can't say Middle class
## 1708 Can't say Do not belong to any class
## 1709 Can't say Working class
## 1710 Finns Party (PS) Do not belong to any class
## 1711 Can't say Do not belong to any class
## 1712 Left Alliance (VAS) Working class
## 1713 Social Democratic Party of Finland (SDP) Lower middle class
## 1714 National Coalition Party (KOK) Middle class
## 1715 Green League (VIHR) Middle class
## 1716 Left Alliance (VAS) Do not belong to any class
## 1717 Green League (VIHR) Lower middle class
## 1718 Can't say Do not belong to any class
## 1719 Social Democratic Party of Finland (SDP) Working class
## 1720 Would not vote Middle class
## 1721 National Coalition Party (KOK) Upper middle class
## 1722 Green League (VIHR) Do not belong to any class
## 1723 Green League (VIHR) Lower middle class
## 1724 Can't say Middle class
## 1725 National Coalition Party (KOK) Upper middle class
## 1726 Finns Party (PS) Working class
## 1727 Finns Party (PS) Middle class
## 1728 Social Democratic Party of Finland (SDP) Lower middle class
## 1729 National Coalition Party (KOK) Middle class
## 1730 Green League (VIHR) Middle class
## 1731 Green League (VIHR) Middle class
## 1732 Social Democratic Party of Finland (SDP) Upper middle class
## 1733 Can't say Middle class
## 1734 National Coalition Party (KOK) Do not belong to any class
## 1735 Social Democratic Party of Finland (SDP) Working class
## 1736 Finns Party (PS) Upper middle class
## 1737 Social Democratic Party of Finland (SDP) Upper middle class
## 1738 Don't want to say Working class
## 1739 Left Alliance (VAS) Working class
## 1740 Movement Now (Liike Nyt) Middle class
## 1741 Finns Party (PS) Middle class
## 1742 Christian Democrats (KD) Upper middle class
## 1743 Christian Democrats (KD) Middle class
## 1744 Swedish People's Party in Finland (RKP) Working class
## 1745 Green League (VIHR) Middle class
## 1746 National Coalition Party (KOK) Upper middle class
## 1747 National Coalition Party (KOK) Do not belong to any class
## 1748 Left Alliance (VAS) Middle class
## 1749 Social Democratic Party of Finland (SDP) Middle class
## 1750 Left Alliance (VAS) Lower middle class
## 1751 Social Democratic Party of Finland (SDP) Working class
## 1752 Finns Party (PS) Middle class
## 1753 National Coalition Party (KOK) Middle class
## 1754 Left Alliance (VAS) Middle class
## 1755 National Coalition Party (KOK) Middle class
## 1756 Finns Party (PS) Do not belong to any class
## 1757 Finns Party (PS) Upper middle class
## 1758 National Coalition Party (KOK) Middle class
## 1759 National Coalition Party (KOK) Upper middle class
## 1760 Left Alliance (VAS) Working class
## 1761 Finns Party (PS) Working class
## 1762 National Coalition Party (KOK) Middle class
## 1763 Can't say Working class
## 1764 Left Alliance (VAS) Working class
## 1765 National Coalition Party (KOK) Middle class
## 1766 Centre Party of Finland (KESK) Middle class
## 1767 Finns Party (PS) Do not belong to any class
## 1768 Social Democratic Party of Finland (SDP) Working class
## 1769 Social Democratic Party of Finland (SDP) Lower middle class
## 1770 Left Alliance (VAS) Working class
## 1771 Would not vote Middle class
## 1772 Can't say Lower middle class
## 1773 Don't want to say Middle class
## 1774 Green League (VIHR) Do not belong to any class
## 1775 Green League (VIHR) Middle class
## 1776 Finns Party (PS) Working class
## 1777 Left Alliance (VAS) Lower middle class
## 1778 Some other party or group Upper middle class
## 1779 National Coalition Party (KOK) Middle class
## 1780 Green League (VIHR) Upper middle class
## 1781 National Coalition Party (KOK) Upper middle class
## 1782 Finns Party (PS) Middle class
## 1783 Green League (VIHR) Upper middle class
## 1784 Can't say Middle class
## 1785 Left Alliance (VAS) Middle class
## 1786 Finns Party (PS) Working class
## 1787 Social Democratic Party of Finland (SDP) Middle class
## 1788 Finns Party (PS) Middle class
## 1789 Can't say Upper middle class
## 1790 Can't say Middle class
## 1791 Green League (VIHR) Do not belong to any class
## 1792 National Coalition Party (KOK) Upper class
## 1793 Finns Party (PS) Middle class
## 1794 Social Democratic Party of Finland (SDP) Middle class
## 1795 Can't say Middle class
## 1796 Can't say Middle class
## 1797 Can't say Do not belong to any class
## 1798 Centre Party of Finland (KESK) Lower middle class
## 1799 Finns Party (PS) Middle class
## 1800 Green League (VIHR) Upper middle class
## 1801 Don't want to say Upper middle class
## 1802 Can't say Lower middle class
## 1803 Left Alliance (VAS) Do not belong to any class
## 1804 Green League (VIHR) Middle class
## 1805 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1806 Social Democratic Party of Finland (SDP) Middle class
## 1807 Green League (VIHR) Do not belong to any class
## 1808 Can't say Do not belong to any class
## 1809 Social Democratic Party of Finland (SDP) Middle class
## 1810 Swedish People's Party in Finland (RKP) Middle class
## 1811 Can't say Lower middle class
## 1812 Don't want to say Lower middle class
## 1813 Green League (VIHR) Middle class
## 1814 Centre Party of Finland (KESK) Upper middle class
## 1815 Social Democratic Party of Finland (SDP) Lower middle class
## 1816 Can't say Do not belong to any class
## 1817 Social Democratic Party of Finland (SDP) Upper middle class
## 1818 Don't want to say Do not belong to any class
## 1819 Can't say Do not belong to any class
## 1820 National Coalition Party (KOK) Middle class
## 1821 Can't say Lower middle class
## 1822 Can't say Upper middle class
## 1823 National Coalition Party (KOK) Upper middle class
## 1824 Finns Party (PS) Do not belong to any class
## 1825 Finns Party (PS) Middle class
## 1826 National Coalition Party (KOK) Lower middle class
## 1827 Finns Party (PS) Lower middle class
## 1828 Finns Party (PS) Working class
## 1829 Would not vote Lower middle class
## 1830 Green League (VIHR) Middle class
## 1831 Finns Party (PS) Middle class
## 1832 National Coalition Party (KOK) Working class
## 1833 Some other party or group Do not belong to any class
## 1834 Green League (VIHR) Lower middle class
## 1835 Green League (VIHR) Upper middle class
## 1836 Centre Party of Finland (KESK) Lower middle class
## 1837 Finns Party (PS) Working class
## 1838 Christian Democrats (KD) Lower middle class
## 1839 Green League (VIHR) Do not belong to any class
## 1840 Green League (VIHR) Do not belong to any class
## 1841 Social Democratic Party of Finland (SDP) Lower middle class
## 1842 Green League (VIHR) Middle class
## 1843 Green League (VIHR) Middle class
## 1844 Left Alliance (VAS) Middle class
## 1845 Left Alliance (VAS) Upper middle class
## 1846 Social Democratic Party of Finland (SDP) Upper middle class
## 1847 Social Democratic Party of Finland (SDP) Middle class
## 1848 Swedish People's Party in Finland (RKP) Middle class
## 1849 Christian Democrats (KD) Do not belong to any class
## 1850 Finns Party (PS) Middle class
## 1851 National Coalition Party (KOK) Upper middle class
## 1852 Movement Now (Liike Nyt) Middle class
## 1853 Can't say Do not belong to any class
## 1854 Centre Party of Finland (KESK) Do not belong to any class
## 1855 National Coalition Party (KOK) Upper middle class
## 1856 National Coalition Party (KOK) Lower middle class
## 1857 Left Alliance (VAS) Middle class
## 1858 National Coalition Party (KOK) Do not belong to any class
## 1859 Can't say Do not belong to any class
## 1860 Social Democratic Party of Finland (SDP) Working class
## 1861 Social Democratic Party of Finland (SDP) Middle class
## 1862 Can't say Do not belong to any class
## 1863 Left Alliance (VAS) Middle class
## 1864 Would not vote Middle class
## 1865 Green League (VIHR) Do not belong to any class
## 1866 Can't say Middle class
## 1867 Can't say Do not belong to any class
## 1868 Green League (VIHR) Middle class
## 1869 Finns Party (PS) Working class
## 1870 Social Democratic Party of Finland (SDP) Working class
## 1871 Finns Party (PS) Do not belong to any class
## 1872 Green League (VIHR) Middle class
## 1873 Christian Democrats (KD) Middle class
## 1874 Centre Party of Finland (KESK) Working class
## 1875 Movement Now (Liike Nyt) Middle class
## 1876 Can't say Middle class
## 1877 Would not vote Working class
## 1878 Finns Party (PS) Lower middle class
## 1879 Finns Party (PS) Lower middle class
## 1880 Finns Party (PS) Middle class
## 1881 Finns Party (PS) Upper middle class
## 1882 Finns Party (PS) Do not belong to any class
## 1883 Finns Party (PS) Lower middle class
## 1884 Left Alliance (VAS) Upper middle class
## 1885 Some other party or group Do not belong to any class
## 1886 Can't say Working class
## 1887 Finns Party (PS) Do not belong to any class
## 1888 Can't say Middle class
## 1889 Green League (VIHR) Working class
## 1890 Movement Now (Liike Nyt) Middle class
## 1891 Can't say Middle class
## 1892 Finns Party (PS) Middle class
## 1893 Social Democratic Party of Finland (SDP) Working class
## 1894 Can't say Working class
## 1895 Can't say Working class
## 1896 Social Democratic Party of Finland (SDP) Middle class
## 1897 Green League (VIHR) Middle class
## 1898 Centre Party of Finland (KESK) Middle class
## 1899 Finns Party (PS) Lower middle class
## 1900 Left Alliance (VAS) Upper middle class
## 1901 Can't say Do not belong to any class
## 1902 Social Democratic Party of Finland (SDP) Middle class
## 1903 Left Alliance (VAS) Working class
## 1904 Centre Party of Finland (KESK) Upper middle class
## 1905 Would not vote Lower middle class
## 1906 Can't say Do not belong to any class
## 1907 Finns Party (PS) Do not belong to any class
## 1908 Green League (VIHR) Lower middle class
## 1909 Finns Party (PS) Middle class
## 1910 Left Alliance (VAS) Lower middle class
## 1911 Green League (VIHR) Lower middle class
## 1912 Social Democratic Party of Finland (SDP) Middle class
## 1913 Christian Democrats (KD) Upper middle class
## 1914 Finns Party (PS) Do not belong to any class
## 1915 Finns Party (PS) Working class
## 1916 Finns Party (PS) Middle class
## 1917 Finns Party (PS) Working class
## 1918 Finns Party (PS) Lower middle class
## 1919 National Coalition Party (KOK) Working class
## 1920 Movement Now (Liike Nyt) Working class
## 1921 Green League (VIHR) Working class
## 1922 Left Alliance (VAS) Working class
## 1923 Green League (VIHR) Middle class
## 1924 National Coalition Party (KOK) Middle class
## 1925 Movement Now (Liike Nyt) Lower middle class
## 1926 Finns Party (PS) Middle class
## 1927 Left Alliance (VAS) Do not belong to any class
## 1928 Christian Democrats (KD) Working class
## 1929 Social Democratic Party of Finland (SDP) Middle class
## 1930 Can't say Middle class
## 1931 National Coalition Party (KOK) Upper middle class
## 1932 Can't say Working class
## 1933 Social Democratic Party of Finland (SDP) Do not belong to any class
## 1934 Green League (VIHR) Do not belong to any class
## 1935 Social Democratic Party of Finland (SDP) Working class
## 1936 Green League (VIHR) Lower middle class
## 1937 Green League (VIHR) Do not belong to any class
## 1938 Would not vote Working class
## househould_income YOB relationship accomplishment autonomy
## 1 10,000 - 20,000 euros/year 1986 0.59 -0.94 1.23
## 2 Over 90,000 euros/year 1980 1.03 0.38 0.06
## 3 50,001 - 60,000 euros/year 1952 0.83 -0.64 0.31
## 4 50,001 - 60,000 euros/year 1968 -0.74 1.40 0.30
## 5 70,001 - 80,000 euros/year 1977 0.68 1.17 1.29
## 6 Over 90,000 euros/year 1971 0.49 0.41 0.87
## 7 40,001 - 50,000 euros/year 1954 0.35 0.33 -0.13
## 8 60,001 - 70,000 euros/year 1958 0.45 -0.47 -0.02
## 9 50,001 - 60,000 euros/year 1958 -1.55 0.56 -1.46
## 10 70,001 - 80,000 euros/year 1954 1.05 -1.24 -0.77
## 11 50,001 - 60,000 euros/year 1955 0.06 0.49 -0.48
## 12 60,001 - 70,000 euros/year 1948 0.22 -0.67 -0.86
## 13 30,001 - 40,000 euros/year 1947 0.72 -0.41 -1.83
## 14 50,001 - 60,000 euros/year 1972 0.67 0.02 1.99
## 15 Don't want to say 1985 0.78 0.60 0.17
## 16 40,001 - 50,000 euros/year 1971 -0.81 0.51 0.24
## 17 40,001 - 50,000 euros/year 1948 0.48 0.46 -0.29
## 18 40,001 - 50,000 euros/year 1966 -2.25 -1.29 -0.42
## 19 80,001 - 90,000 euros/year 1959 0.64 1.49 -0.20
## 20 Don't want to say 1972 -0.77 -0.37 -1.20
## 21 Over 90,000 euros/year 1978 1.09 -0.54 -0.05
## 22 50,001 - 60,000 euros/year 1972 0.76 -0.91 0.68
## 23 80,001 - 90,000 euros/year 1963 0.91 -0.56 -1.34
## 24 40,001 - 50,000 euros/year 1979 -0.53 -0.89 1.68
## 25 Over 90,000 euros/year 1957 0.42 1.67 0.56
## 26 Under 10,000 euros/year 1969 1.00 0.62 -0.75
## 27 30,001 - 40,000 euros/year 1982 0.43 2.03 1.45
## 28 Don't want to say 1972 0.11 1.08 -1.72
## 29 Under 10,000 euros/year 1981 -0.70 0.62 0.03
## 30 10,000 - 20,000 euros/year 1969 0.98 -0.84 0.38
## 31 Over 90,000 euros/year 1972 -0.15 -0.33 0.60
## 32 Over 90,000 euros/year 1977 -1.30 -0.72 0.04
## 33 Don't want to say 1973 -0.83 -1.28 -0.06
## 34 50,001 - 60,000 euros/year 1973 0.90 -0.62 0.10
## 35 Over 90,000 euros/year 1960 -1.32 -0.09 -1.39
## 36 20,001 - 30,000 euros/year 1949 0.05 0.62 -1.40
## 37 30,001 - 40,000 euros/year 1967 -0.53 1.00 -1.53
## 38 40,001 - 50,000 euros/year 1957 0.71 2.48 0.61
## 39 50,001 - 60,000 euros/year 1948 0.28 -0.86 0.94
## 40 Over 90,000 euros/year 1946 0.53 -0.10 -0.95
## 41 10,000 - 20,000 euros/year 1946 -0.28 -0.54 0.02
## 42 30,001 - 40,000 euros/year 1947 0.40 -0.59 -0.72
## 43 30,001 - 40,000 euros/year 1973 -1.87 0.05 -1.05
## 44 70,001 - 80,000 euros/year 1979 0.87 -0.61 0.19
## 45 20,001 - 30,000 euros/year 1977 0.83 -0.30 -0.38
## 46 40,001 - 50,000 euros/year 1958 1.22 -0.75 -2.08
## 47 80,001 - 90,000 euros/year 1965 0.51 0.53 -0.56
## 48 40,001 - 50,000 euros/year 1971 -1.12 -0.35 -1.62
## 49 80,001 - 90,000 euros/year 1951 0.39 1.48 0.21
## 50 30,001 - 40,000 euros/year 1963 0.17 -1.93 0.63
## 51 60,001 - 70,000 euros/year 1957 0.50 1.16 1.25
## 52 Over 90,000 euros/year 1965 0.54 1.58 -0.09
## 53 40,001 - 50,000 euros/year 1977 0.46 0.43 0.15
## 54 30,001 - 40,000 euros/year 1946 -1.06 0.33 0.14
## 55 30,001 - 40,000 euros/year 1973 -0.70 -0.36 -0.83
## 56 50,001 - 60,000 euros/year 1971 0.64 -0.26 -0.74
## 57 40,001 - 50,000 euros/year 1942 0.44 -0.78 0.07
## 58 30,001 - 40,000 euros/year 1969 -0.24 -1.66 0.22
## 59 80,001 - 90,000 euros/year 1981 0.75 0.33 0.11
## 60 Don't want to say 1987 0.40 1.40 0.18
## 61 80,001 - 90,000 euros/year 1969 -1.14 -1.41 -0.72
## 62 Over 90,000 euros/year 1966 0.16 -0.33 -0.17
## 63 50,001 - 60,000 euros/year 1950 0.65 -0.84 0.66
## 64 Under 10,000 euros/year 1973 -0.76 1.29 0.22
## 65 40,001 - 50,000 euros/year 1944 -0.03 -0.52 -1.20
## 66 Don't want to say 1987 -0.07 0.57 -0.60
## 67 50,001 - 60,000 euros/year 1947 0.81 -0.88 0.22
## 68 60,001 - 70,000 euros/year 1955 -0.41 -0.90 0.73
## 69 Under 10,000 euros/year 1982 1.02 -0.59 -0.82
## 70 20,001 - 30,000 euros/year 1971 0.80 -1.60 -0.03
## 71 40,001 - 50,000 euros/year 1966 0.37 0.37 0.03
## 72 70,001 - 80,000 euros/year 1971 -0.97 0.94 -1.04
## 73 60,001 - 70,000 euros/year 1970 0.72 0.44 0.02
## 74 40,001 - 50,000 euros/year 1987 -1.78 0.14 -1.44
## 75 30,001 - 40,000 euros/year 1966 0.66 -0.76 1.04
## 76 30,001 - 40,000 euros/year 1953 -0.68 -0.57 0.16
## 77 30,001 - 40,000 euros/year 1947 -1.15 0.11 1.48
## 78 Over 90,000 euros/year 1979 1.45 -1.25 -0.11
## 79 20,001 - 30,000 euros/year 1954 -0.19 0.08 1.03
## 80 20,001 - 30,000 euros/year 1950 0.35 -0.19 -0.95
## 81 20,001 - 30,000 euros/year 1969 0.70 -0.97 1.76
## 82 20,001 - 30,000 euros/year 1974 -0.97 0.47 -1.23
## 83 Under 10,000 euros/year 1974 -0.05 -0.68 0.85
## 84 50,001 - 60,000 euros/year 1985 0.96 -0.64 0.14
## 85 Over 90,000 euros/year 1948 0.57 -0.76 0.40
## 86 Under 10,000 euros/year 1967 0.88 1.44 -0.21
## 87 20,001 - 30,000 euros/year 1971 0.64 1.04 -2.31
## 88 40,001 - 50,000 euros/year 1944 0.30 0.42 -0.22
## 89 50,001 - 60,000 euros/year 1979 -0.30 -1.10 2.14
## 90 20,001 - 30,000 euros/year 1953 0.33 0.51 0.23
## 91 Under 10,000 euros/year 1974 -0.59 -1.23 0.16
## 92 80,001 - 90,000 euros/year 1981 0.48 0.40 0.04
## 93 70,001 - 80,000 euros/year 1955 0.42 1.62 0.87
## 94 50,001 - 60,000 euros/year 1959 0.82 0.18 1.01
## 95 Under 10,000 euros/year 1980 -0.35 0.69 -0.54
## 96 70,001 - 80,000 euros/year 1947 0.32 1.31 0.86
## 97 50,001 - 60,000 euros/year 1982 0.32 -0.68 0.52
## 98 70,001 - 80,000 euros/year 1980 0.38 -1.57 0.05
## 99 50,001 - 60,000 euros/year 1973 -2.11 0.43 -2.37
## 100 Don't want to say 1982 0.64 1.03 1.45
## 101 40,001 - 50,000 euros/year 1972 0.70 -0.55 0.01
## 102 60,001 - 70,000 euros/year 1971 -0.22 1.44 0.01
## 103 30,001 - 40,000 euros/year 1947 -0.61 1.60 -0.63
## 104 40,001 - 50,000 euros/year 1966 -1.04 0.80 -1.00
## 105 40,001 - 50,000 euros/year 1968 -0.74 -0.59 -0.24
## 106 60,001 - 70,000 euros/year 1968 -0.65 -1.77 0.21
## 107 Over 90,000 euros/year 1962 0.54 -0.56 -1.36
## 108 70,001 - 80,000 euros/year 1955 0.58 -0.83 -0.09
## 109 10,000 - 20,000 euros/year 1943 -2.66 -0.25 -0.68
## 110 50,001 - 60,000 euros/year 1960 0.32 0.28 0.27
## 111 60,001 - 70,000 euros/year 1954 1.01 -0.64 -0.62
## 112 40,001 - 50,000 euros/year 1960 -1.44 -0.66 0.09
## 113 40,001 - 50,000 euros/year 1972 0.56 0.10 0.02
## 114 30,001 - 40,000 euros/year 1974 0.76 -1.09 1.32
## 115 40,001 - 50,000 euros/year 1972 -0.73 1.49 1.28
## 116 60,001 - 70,000 euros/year 1967 1.03 -0.77 0.28
## 117 Don't want to say 1966 0.11 1.03 -1.65
## 118 70,001 - 80,000 euros/year 1970 0.18 0.56 -0.44
## 119 Don't want to say 1941 0.38 -1.78 -0.45
## 120 40,001 - 50,000 euros/year 1982 0.45 -0.52 -0.62
## 121 40,001 - 50,000 euros/year 1982 0.53 -0.88 1.20
## 122 60,001 - 70,000 euros/year 1952 -0.34 0.22 1.21
## 123 60,001 - 70,000 euros/year 1969 0.48 0.63 -0.07
## 124 30,001 - 40,000 euros/year 1950 0.24 0.57 -1.50
## 125 Over 90,000 euros/year 1972 0.02 0.54 -1.21
## 126 20,001 - 30,000 euros/year 1953 -0.53 -1.67 0.41
## 127 50,001 - 60,000 euros/year 1981 0.12 -1.04 -1.02
## 128 40,001 - 50,000 euros/year 1972 -0.99 0.67 -0.53
## 129 60,001 - 70,000 euros/year 1949 -2.39 0.48 0.42
## 130 Under 10,000 euros/year 1970 -3.74 -0.59 -2.39
## 131 50,001 - 60,000 euros/year 1976 -0.12 -1.49 -1.08
## 132 Don't want to say 1950 1.08 -1.16 -0.58
## 133 50,001 - 60,000 euros/year 1959 -0.34 0.19 0.43
## 134 Over 90,000 euros/year 1957 -0.29 1.88 -0.61
## 135 20,001 - 30,000 euros/year 1953 -1.51 -0.34 -0.50
## 136 30,001 - 40,000 euros/year 1972 -2.34 0.38 0.57
## 137 70,001 - 80,000 euros/year 1965 1.17 -0.42 -0.38
## 138 80,001 - 90,000 euros/year 1965 1.19 -0.37 -0.03
## 139 60,001 - 70,000 euros/year 1961 0.10 -1.57 -0.34
## 140 30,001 - 40,000 euros/year 1979 1.22 0.79 -0.44
## 141 10,000 - 20,000 euros/year 1964 -0.95 -0.60 0.30
## 142 Under 10,000 euros/year 1983 -0.70 -0.58 0.30
## 143 20,001 - 30,000 euros/year 1974 -2.85 -0.04 -2.20
## 144 50,001 - 60,000 euros/year 1962 0.51 0.98 -1.62
## 145 30,001 - 40,000 euros/year 1955 -0.70 -0.43 0.06
## 146 20,001 - 30,000 euros/year 1982 -1.42 0.50 -0.36
## 147 40,001 - 50,000 euros/year 1964 0.68 -0.88 1.53
## 148 20,001 - 30,000 euros/year 1945 0.25 -1.56 -0.83
## 149 20,001 - 30,000 euros/year 1956 0.64 -0.84 0.33
## 150 10,000 - 20,000 euros/year 1982 -2.50 -1.46 -1.35
## 151 30,001 - 40,000 euros/year 1984 0.96 0.47 0.44
## 152 10,000 - 20,000 euros/year 1985 -1.76 -1.84 1.56
## 153 50,001 - 60,000 euros/year 1954 -1.52 0.72 -0.68
## 154 10,000 - 20,000 euros/year 1980 0.17 0.52 -0.89
## 155 50,001 - 60,000 euros/year 1970 0.62 -0.05 1.30
## 156 Under 10,000 euros/year 1977 -3.53 -0.19 -0.39
## 157 Don't want to say 1978 0.42 0.66 -0.03
## 158 30,001 - 40,000 euros/year 1961 0.93 0.63 -0.38
## 159 30,001 - 40,000 euros/year 1989 0.93 -0.55 0.02
## 160 60,001 - 70,000 euros/year 1976 -0.75 -0.83 1.23
## 161 20,001 - 30,000 euros/year 1946 0.60 -1.32 -1.85
## 162 Over 90,000 euros/year 1968 0.56 -0.38 -1.14
## 163 70,001 - 80,000 euros/year 1980 0.26 0.38 0.09
## 164 40,001 - 50,000 euros/year 1988 -0.62 -1.63 -0.10
## 165 20,001 - 30,000 euros/year 1976 0.66 0.54 -0.18
## 166 40,001 - 50,000 euros/year 1955 0.58 -0.74 0.02
## 167 50,001 - 60,000 euros/year 1978 0.35 1.30 1.28
## 168 Over 90,000 euros/year 1946 0.45 -0.88 0.47
## 169 50,001 - 60,000 euros/year 1948 0.50 1.40 0.02
## 170 80,001 - 90,000 euros/year 1977 0.10 -0.83 0.77
## 171 50,001 - 60,000 euros/year 1985 0.38 0.06 1.52
## 172 Don't want to say 1983 1.09 0.35 0.71
## 173 30,001 - 40,000 euros/year 1946 0.40 -0.37 -0.25
## 174 30,001 - 40,000 euros/year 1955 0.81 -0.68 0.18
## 175 50,001 - 60,000 euros/year 1945 -1.03 1.13 0.53
## 176 40,001 - 50,000 euros/year 1964 -0.87 -0.36 -2.01
## 177 30,001 - 40,000 euros/year 1984 0.60 -1.13 0.71
## 178 70,001 - 80,000 euros/year 1976 0.82 -0.26 -0.52
## 179 40,001 - 50,000 euros/year 1947 0.89 -0.40 -0.55
## 180 20,001 - 30,000 euros/year 1956 -0.76 0.23 0.58
## 181 Under 10,000 euros/year 1964 -0.51 -1.81 0.26
## 182 30,001 - 40,000 euros/year 1952 0.09 0.22 0.40
## 183 20,001 - 30,000 euros/year 1945 -4.27 -0.67 0.85
## 184 30,001 - 40,000 euros/year 1947 -0.15 -0.44 -1.35
## 185 30,001 - 40,000 euros/year 1958 0.53 -0.05 1.10
## 186 60,001 - 70,000 euros/year 1943 0.36 1.38 0.57
## 187 Over 90,000 euros/year 1955 0.34 -0.69 -0.25
## 188 20,001 - 30,000 euros/year 1979 0.83 -0.76 1.27
## 189 40,001 - 50,000 euros/year 1953 0.84 0.48 0.46
## 190 20,001 - 30,000 euros/year 1952 0.64 0.31 0.95
## 191 Don't want to say 1973 -0.05 0.17 0.63
## 192 Don't want to say 1983 -1.65 -0.37 -0.12
## 193 40,001 - 50,000 euros/year 1964 0.89 -1.70 -0.04
## 194 50,001 - 60,000 euros/year 1964 0.32 -0.61 -0.93
## 195 Under 10,000 euros/year 1969 0.26 -0.68 -0.25
## 196 30,001 - 40,000 euros/year 1976 -0.03 -0.52 -0.40
## 197 30,001 - 40,000 euros/year 1963 0.83 -0.76 0.14
## 198 Don't want to say 1972 -0.95 -1.00 2.06
## 199 Over 90,000 euros/year 1972 -0.72 -0.76 -0.41
## 200 70,001 - 80,000 euros/year 1964 0.52 -0.16 1.36
## 201 30,001 - 40,000 euros/year 1957 -1.82 -0.02 -0.64
## 202 10,000 - 20,000 euros/year 1984 1.04 -1.98 0.49
## 203 40,001 - 50,000 euros/year 1974 0.65 -0.31 -1.69
## 204 30,001 - 40,000 euros/year 1977 0.82 0.47 0.65
## 205 Under 10,000 euros/year 1950 1.05 -0.79 -0.83
## 206 60,001 - 70,000 euros/year 1960 0.61 0.38 -0.17
## 207 70,001 - 80,000 euros/year 1988 0.50 1.40 1.04
## 208 80,001 - 90,000 euros/year 1968 1.01 -0.46 0.36
## 209 10,000 - 20,000 euros/year 1974 1.00 0.63 -0.09
## 210 10,000 - 20,000 euros/year 1986 0.78 1.65 0.20
## 211 Don't want to say 1948 -0.93 0.53 0.35
## 212 60,001 - 70,000 euros/year 1980 -0.29 -0.57 -0.58
## 213 Over 90,000 euros/year 1958 0.77 1.78 -0.71
## 214 40,001 - 50,000 euros/year 1959 0.17 -0.62 -0.05
## 215 30,001 - 40,000 euros/year 1943 -0.41 -0.68 -0.28
## 216 50,001 - 60,000 euros/year 1950 0.60 0.28 -0.08
## 217 Don't want to say 1960 0.62 1.71 -0.05
## 218 20,001 - 30,000 euros/year 1982 0.21 1.63 0.61
## 219 40,001 - 50,000 euros/year 1951 -0.78 -0.86 1.20
## 220 10,000 - 20,000 euros/year 1941 0.19 -0.75 -0.30
## 221 50,001 - 60,000 euros/year 1980 -0.04 -0.67 0.38
## 222 30,001 - 40,000 euros/year 1978 -0.54 0.85 -1.08
## 223 20,001 - 30,000 euros/year 1987 -1.32 0.00 -1.88
## 224 50,001 - 60,000 euros/year 1957 0.98 0.10 -1.42
## 225 50,001 - 60,000 euros/year 1967 -1.31 0.24 0.78
## 226 40,001 - 50,000 euros/year 1978 0.73 -0.52 0.48
## 227 50,001 - 60,000 euros/year 1958 -1.17 -0.39 -0.56
## 228 10,000 - 20,000 euros/year 1953 0.52 0.07 1.27
## 229 10,000 - 20,000 euros/year 1954 -1.97 0.12 1.33
## 230 50,001 - 60,000 euros/year 1946 0.84 1.45 0.21
## 231 Don't want to say 1960 -0.71 -0.62 0.20
## 232 50,001 - 60,000 euros/year 1973 0.46 1.02 -1.70
## 233 Over 90,000 euros/year 1971 -3.46 -1.74 -0.43
## 234 10,000 - 20,000 euros/year 1954 -3.76 -0.65 0.30
## 235 10,000 - 20,000 euros/year 1988 0.46 1.91 1.21
## 236 60,001 - 70,000 euros/year 1984 1.00 -0.36 -0.43
## 237 50,001 - 60,000 euros/year 1964 0.47 2.02 0.95
## 238 50,001 - 60,000 euros/year 1974 -1.82 0.59 0.54
## 239 30,001 - 40,000 euros/year 1951 -0.24 -0.10 -0.92
## 240 20,001 - 30,000 euros/year 1987 0.00 -0.34 0.18
## 241 10,000 - 20,000 euros/year 1952 0.08 -0.05 -1.97
## 242 Over 90,000 euros/year 1971 -0.86 -0.14 -1.54
## 243 50,001 - 60,000 euros/year 1971 0.99 -0.53 -0.23
## 244 Over 90,000 euros/year 1944 -0.72 0.53 -0.36
## 245 50,001 - 60,000 euros/year 1972 -0.01 -0.37 -0.37
## 246 Under 10,000 euros/year 1968 0.57 1.65 0.46
## 247 30,001 - 40,000 euros/year 1974 -0.44 -1.52 -0.36
## 248 80,001 - 90,000 euros/year 1956 0.78 -0.47 -0.48
## 249 40,001 - 50,000 euros/year 1968 -2.42 0.75 -1.66
## 250 Don't want to say 1957 -0.51 0.67 -1.47
## 251 20,001 - 30,000 euros/year 1954 0.84 0.38 -0.16
## 252 50,001 - 60,000 euros/year 1946 -0.84 -0.72 -0.14
## 253 Over 90,000 euros/year 1953 0.02 -0.45 -1.90
## 254 60,001 - 70,000 euros/year 1956 0.03 -0.43 -1.32
## 255 60,001 - 70,000 euros/year 1954 0.73 0.55 -0.78
## 256 30,001 - 40,000 euros/year 1965 0.55 -0.80 -2.33
## 257 30,001 - 40,000 euros/year 1982 0.40 0.06 1.29
## 258 10,000 - 20,000 euros/year 1970 -0.35 0.23 -0.22
## 259 30,001 - 40,000 euros/year 1945 0.88 -1.87 1.36
## 260 40,001 - 50,000 euros/year 1961 0.90 0.77 -1.03
## 261 Over 90,000 euros/year 1955 0.78 0.13 0.66
## 262 60,001 - 70,000 euros/year 1946 0.04 0.60 -0.17
## 263 10,000 - 20,000 euros/year 1959 -3.40 -1.51 -0.75
## 264 80,001 - 90,000 euros/year 1957 0.81 -0.55 -0.05
## 265 40,001 - 50,000 euros/year 1956 0.30 -0.84 0.44
## 266 20,001 - 30,000 euros/year 1967 0.39 -1.77 -0.91
## 267 40,001 - 50,000 euros/year 1969 0.47 2.15 0.76
## 268 40,001 - 50,000 euros/year 1960 -0.55 -1.06 -2.78
## 269 20,001 - 30,000 euros/year 1948 -0.56 -0.36 -0.35
## 270 20,001 - 30,000 euros/year 1949 -0.56 -0.59 0.60
## 271 Don't want to say 1979 -0.25 1.99 -0.21
## 272 50,001 - 60,000 euros/year 1944 0.47 2.09 1.36
## 273 40,001 - 50,000 euros/year 1944 -0.36 1.16 0.62
## 274 40,001 - 50,000 euros/year 1967 0.45 1.94 1.27
## 275 10,000 - 20,000 euros/year 1943 0.47 2.02 0.95
## 276 Don't want to say 1974 0.72 0.41 0.35
## 277 30,001 - 40,000 euros/year 1948 0.31 -1.46 -1.44
## 278 10,000 - 20,000 euros/year 1971 -0.63 -0.42 -0.45
## 279 Over 90,000 euros/year 1955 0.80 -0.68 -0.39
## 280 40,001 - 50,000 euros/year 1944 0.06 -0.34 -1.07
## 281 50,001 - 60,000 euros/year 1981 -0.60 -0.52 -0.65
## 282 30,001 - 40,000 euros/year 1961 -1.04 -0.88 0.06
## 283 40,001 - 50,000 euros/year 1945 -1.13 0.50 -0.78
## 284 50,001 - 60,000 euros/year 1960 -0.91 -1.08 0.22
## 285 10,000 - 20,000 euros/year 1945 0.56 -0.71 -0.79
## 286 Don't want to say 1981 0.83 1.42 0.45
## 287 60,001 - 70,000 euros/year 1946 -1.59 -0.40 -0.58
## 288 Under 10,000 euros/year 1955 -0.49 -0.07 -1.22
## 289 50,001 - 60,000 euros/year 1957 0.73 0.47 0.01
## 290 50,001 - 60,000 euros/year 1991 0.06 -0.15 -0.53
## 291 30,001 - 40,000 euros/year 1974 -1.55 -2.14 1.60
## 292 40,001 - 50,000 euros/year 1955 0.36 -0.45 -0.71
## 293 70,001 - 80,000 euros/year 1944 -0.43 0.58 -0.77
## 294 Under 10,000 euros/year 1993 -0.35 -0.12 -1.45
## 295 20,001 - 30,000 euros/year 1960 0.73 -0.24 -0.56
## 296 30,001 - 40,000 euros/year 1944 -0.53 -0.42 0.00
## 297 20,001 - 30,000 euros/year 1972 0.38 1.48 -0.12
## 298 30,001 - 40,000 euros/year 1956 1.06 -0.17 -0.98
## 299 20,001 - 30,000 euros/year 1961 0.84 -0.85 0.69
## 300 40,001 - 50,000 euros/year 1947 -0.76 1.40 0.29
## 301 10,000 - 20,000 euros/year 1944 -1.94 0.46 0.13
## 302 Over 90,000 euros/year 1949 0.90 0.38 0.13
## 303 30,001 - 40,000 euros/year 1951 -2.32 2.24 1.19
## 304 50,001 - 60,000 euros/year 1950 1.09 -0.76 0.60
## 305 10,000 - 20,000 euros/year 1950 -0.44 -0.15 -4.46
## 306 30,001 - 40,000 euros/year 1977 0.05 -0.46 0.33
## 307 Don't want to say 1975 1.00 0.65 -0.06
## 308 Don't want to say 1991 -1.19 0.54 0.49
## 309 30,001 - 40,000 euros/year 1976 -3.14 -1.08 -1.51
## 310 20,001 - 30,000 euros/year 1945 -0.28 -0.56 0.50
## 311 40,001 - 50,000 euros/year 1952 0.69 0.48 0.05
## 312 60,001 - 70,000 euros/year 1977 -0.61 1.55 0.66
## 313 Don't want to say 1942 -2.39 0.45 1.01
## 314 30,001 - 40,000 euros/year 1981 -0.38 -0.52 0.58
## 315 20,001 - 30,000 euros/year 1944 0.46 1.91 1.21
## 316 30,001 - 40,000 euros/year 1948 0.70 -0.75 0.29
## 317 50,001 - 60,000 euros/year 1953 -0.70 -0.76 0.07
## 318 10,000 - 20,000 euros/year 1974 -0.53 -1.66 -0.10
## 319 40,001 - 50,000 euros/year 1967 0.76 0.47 0.88
## 320 10,000 - 20,000 euros/year 1988 -0.38 -0.37 0.35
## 321 30,001 - 40,000 euros/year 1941 -0.08 1.44 -0.06
## 322 40,001 - 50,000 euros/year 1947 -0.72 0.48 0.21
## 323 10,000 - 20,000 euros/year 1987 -2.58 -0.02 -0.62
## 324 70,001 - 80,000 euros/year 1966 0.79 -1.37 -0.46
## 325 30,001 - 40,000 euros/year 1987 0.09 0.74 -0.22
## 326 20,001 - 30,000 euros/year 1987 -0.12 -1.30 -1.65
## 327 10,000 - 20,000 euros/year 1963 0.52 0.17 1.09
## 328 40,001 - 50,000 euros/year 1943 0.73 -0.95 0.98
## 329 20,001 - 30,000 euros/year 1961 0.02 -0.26 -0.92
## 330 20,001 - 30,000 euros/year 1979 0.75 -1.01 -1.32
## 331 30,001 - 40,000 euros/year 1948 0.71 -0.87 0.70
## 332 30,001 - 40,000 euros/year 1967 0.06 -0.66 1.12
## 333 50,001 - 60,000 euros/year 1976 -0.15 0.33 0.04
## 334 80,001 - 90,000 euros/year 1958 0.64 -0.75 -0.01
## 335 20,001 - 30,000 euros/year 1959 0.67 -0.83 -1.75
## 336 50,001 - 60,000 euros/year 1975 -0.15 -0.60 1.04
## 337 60,001 - 70,000 euros/year 1958 0.82 -0.94 0.64
## 338 10,000 - 20,000 euros/year 1987 -0.84 -0.39 0.30
## 339 50,001 - 60,000 euros/year 1964 0.74 -0.40 -0.90
## 340 40,001 - 50,000 euros/year 1968 0.30 1.10 1.03
## 341 60,001 - 70,000 euros/year 1975 0.48 1.10 1.27
## 342 60,001 - 70,000 euros/year 1985 0.64 1.20 -1.97
## 343 50,001 - 60,000 euros/year 1947 1.16 -0.15 -0.75
## 344 50,001 - 60,000 euros/year 1965 0.70 -1.01 -2.46
## 345 Don't want to say 1965 -0.37 0.85 -0.74
## 346 30,001 - 40,000 euros/year 1956 -1.53 -2.27 0.87
## 347 30,001 - 40,000 euros/year 1951 -1.22 -0.90 0.19
## 348 80,001 - 90,000 euros/year 1976 -0.87 -1.45 0.31
## 349 20,001 - 30,000 euros/year 1974 -1.45 -0.92 0.93
## 350 Don't want to say 1942 -2.44 -0.66 0.25
## 351 70,001 - 80,000 euros/year 1963 0.70 1.03 1.22
## 352 40,001 - 50,000 euros/year 1953 0.55 -1.19 1.43
## 353 Don't want to say 1967 -1.07 1.27 1.04
## 354 30,001 - 40,000 euros/year 1942 -0.65 -0.17 1.61
## 355 10,000 - 20,000 euros/year 1977 0.74 -0.67 -0.37
## 356 40,001 - 50,000 euros/year 1945 -0.68 -0.43 -0.16
## 357 70,001 - 80,000 euros/year 1977 -0.02 0.55 -0.65
## 358 70,001 - 80,000 euros/year 1971 0.74 1.29 1.02
## 359 30,001 - 40,000 euros/year 1942 -1.94 -1.87 1.02
## 360 50,001 - 60,000 euros/year 1978 0.48 -0.61 0.24
## 361 Over 90,000 euros/year 1951 1.01 0.59 -0.18
## 362 20,001 - 30,000 euros/year 1984 0.83 -0.38 -0.26
## 363 20,001 - 30,000 euros/year 1947 0.44 2.00 1.39
## 364 40,001 - 50,000 euros/year 1957 0.69 0.28 0.73
## 365 20,001 - 30,000 euros/year 1964 0.58 -0.31 -1.12
## 366 60,001 - 70,000 euros/year 1975 0.46 0.60 -1.19
## 367 70,001 - 80,000 euros/year 1958 -2.16 0.84 -0.68
## 368 60,001 - 70,000 euros/year 1961 1.04 0.12 -2.19
## 369 50,001 - 60,000 euros/year 1977 0.75 0.33 0.11
## 370 60,001 - 70,000 euros/year 1971 -0.44 0.12 1.00
## 371 50,001 - 60,000 euros/year 1945 -1.92 -0.63 1.52
## 372 50,001 - 60,000 euros/year 1960 -0.47 0.69 -1.49
## 373 10,000 - 20,000 euros/year 1947 1.13 -1.29 -0.57
## 374 Over 90,000 euros/year 1973 -0.83 0.18 1.11
## 375 20,001 - 30,000 euros/year 1955 0.48 -0.04 1.13
## 376 20,001 - 30,000 euros/year 1949 0.49 -0.41 -1.05
## 377 10,000 - 20,000 euros/year 1980 -1.32 -2.19 2.02
## 378 Don't want to say 1971 0.70 -0.96 1.35
## 379 Over 90,000 euros/year 1960 0.24 0.22 0.54
## 380 Over 90,000 euros/year 1971 -0.40 0.11 0.73
## 381 Under 10,000 euros/year 1981 -2.40 0.03 0.55
## 382 50,001 - 60,000 euros/year 1968 0.32 -1.10 -1.02
## 383 50,001 - 60,000 euros/year 1948 1.15 -0.18 -0.37
## 384 20,001 - 30,000 euros/year 1946 0.64 -1.65 0.48
## 385 40,001 - 50,000 euros/year 1953 0.54 0.25 0.33
## 386 20,001 - 30,000 euros/year 1952 0.79 -1.14 -0.80
## 387 30,001 - 40,000 euros/year 1947 0.92 0.45 0.35
## 388 20,001 - 30,000 euros/year 1949 0.88 -0.08 1.51
## 389 30,001 - 40,000 euros/year 1946 -1.05 -1.94 0.92
## 390 Don't want to say 1964 -0.37 -2.20 1.66
## 391 70,001 - 80,000 euros/year 1967 1.07 -1.43 -0.40
## 392 60,001 - 70,000 euros/year 1982 0.24 -0.12 -0.45
## 393 30,001 - 40,000 euros/year 1943 -0.62 0.67 -0.63
## 394 40,001 - 50,000 euros/year 1976 0.93 0.14 0.52
## 395 30,001 - 40,000 euros/year 1948 0.99 0.51 0.13
## 396 30,001 - 40,000 euros/year 1952 0.64 -2.07 0.78
## 397 30,001 - 40,000 euros/year 1954 0.73 -0.47 -0.37
## 398 Over 90,000 euros/year 1947 -0.73 1.19 0.81
## 399 80,001 - 90,000 euros/year 1979 0.00 -0.55 -1.35
## 400 60,001 - 70,000 euros/year 1962 0.16 0.99 -1.52
## 401 20,001 - 30,000 euros/year 1952 1.14 -0.36 -0.80
## 402 60,001 - 70,000 euros/year 1949 0.06 -0.55 -0.62
## 403 40,001 - 50,000 euros/year 1963 0.32 0.93 -1.49
## 404 70,001 - 80,000 euros/year 1955 0.54 0.06 0.84
## 405 30,001 - 40,000 euros/year 1960 0.80 0.45 0.29
## 406 Under 10,000 euros/year 1956 -1.44 0.72 -0.63
## 407 50,001 - 60,000 euros/year 1946 -0.02 0.50 -0.23
## 408 60,001 - 70,000 euros/year 1948 0.24 0.16 0.70
## 409 20,001 - 30,000 euros/year 1946 -0.28 0.32 0.11
## 410 Under 10,000 euros/year 1975 0.52 -0.12 -0.54
## 411 30,001 - 40,000 euros/year 1946 0.64 0.52 -0.18
## 412 Under 10,000 euros/year 1986 -3.32 0.65 1.02
## 413 Under 10,000 euros/year 1986 0.38 -1.15 2.70
## 414 20,001 - 30,000 euros/year 1949 0.82 -0.70 -0.28
## 415 Over 90,000 euros/year 1947 0.46 1.05 0.71
## 416 10,000 - 20,000 euros/year 1964 0.35 -2.21 0.95
## 417 40,001 - 50,000 euros/year 1968 1.00 -0.78 -3.40
## 418 60,001 - 70,000 euros/year 1945 0.40 0.37 0.27
## 419 20,001 - 30,000 euros/year 1941 -0.67 0.50 -0.06
## 420 70,001 - 80,000 euros/year 1980 1.06 -0.21 -0.79
## 421 30,001 - 40,000 euros/year 1954 0.38 0.22 0.20
## 422 Don't want to say 1972 0.05 -0.37 -0.02
## 423 40,001 - 50,000 euros/year 1948 0.23 1.42 -0.19
## 424 Don't want to say 1968 0.69 0.23 0.43
## 425 40,001 - 50,000 euros/year 1967 1.23 1.15 -0.78
## 426 40,001 - 50,000 euros/year 1948 -0.25 0.78 0.21
## 427 40,001 - 50,000 euros/year 1979 -0.34 -1.00 1.61
## 428 20,001 - 30,000 euros/year 1952 0.83 0.42 0.73
## 429 Over 90,000 euros/year 1972 0.00 0.62 -0.32
## 430 30,001 - 40,000 euros/year 1950 0.33 -1.89 -0.03
## 431 30,001 - 40,000 euros/year 1963 0.44 -0.53 -0.46
## 432 Under 10,000 euros/year 1983 -1.33 0.60 1.07
## 433 60,001 - 70,000 euros/year 1976 0.67 0.35 0.33
## 434 60,001 - 70,000 euros/year 1943 0.12 0.64 -0.30
## 435 Under 10,000 euros/year 1992 1.45 0.07 -1.57
## 436 40,001 - 50,000 euros/year 1961 0.81 0.27 0.35
## 437 60,001 - 70,000 euros/year 1947 0.75 0.26 -0.08
## 438 20,001 - 30,000 euros/year 1950 0.52 -0.11 1.05
## 439 40,001 - 50,000 euros/year 1942 -1.28 -0.24 -0.62
## 440 20,001 - 30,000 euros/year 1965 -0.20 -0.49 -0.10
## 441 40,001 - 50,000 euros/year 1963 0.33 -0.59 -0.08
## 442 40,001 - 50,000 euros/year 1952 -0.79 0.23 -0.05
## 443 10,000 - 20,000 euros/year 1948 0.52 0.15 0.49
## 444 30,001 - 40,000 euros/year 1948 -0.89 0.56 -0.04
## 445 30,001 - 40,000 euros/year 1947 -1.25 0.40 -0.25
## 446 80,001 - 90,000 euros/year 1964 0.53 0.03 0.85
## 447 70,001 - 80,000 euros/year 1959 -0.28 -0.74 -0.21
## 448 30,001 - 40,000 euros/year 1959 -2.68 -1.58 -0.16
## 449 60,001 - 70,000 euros/year 1947 0.28 0.22 0.54
## 450 20,001 - 30,000 euros/year 1981 -0.39 0.32 2.42
## 451 20,001 - 30,000 euros/year 1984 0.78 0.20 -0.16
## 452 30,001 - 40,000 euros/year 1950 -0.76 0.95 -1.23
## 453 50,001 - 60,000 euros/year 1983 0.73 1.16 0.65
## 454 Don't want to say 1971 -1.11 -1.53 0.19
## 455 10,000 - 20,000 euros/year 1970 0.25 0.54 -0.78
## 456 Don't want to say 1951 -0.27 -1.04 1.66
## 457 30,001 - 40,000 euros/year 1977 0.72 -0.84 1.46
## 458 Don't want to say 1982 -2.09 0.68 0.24
## 459 30,001 - 40,000 euros/year 1943 -2.33 -0.05 -0.78
## 460 80,001 - 90,000 euros/year 1949 0.26 1.50 0.32
## 461 40,001 - 50,000 euros/year 1946 0.65 0.30 0.11
## 462 50,001 - 60,000 euros/year 1950 0.65 -0.40 -0.51
## 463 50,001 - 60,000 euros/year 1946 0.77 0.10 0.10
## 464 Don't want to say 1946 0.57 -0.98 0.92
## 465 80,001 - 90,000 euros/year 1958 -0.03 -0.44 -1.45
## 466 60,001 - 70,000 euros/year 1962 0.33 -1.23 -1.05
## 467 30,001 - 40,000 euros/year 1955 -1.56 -0.77 -0.20
## 468 Under 10,000 euros/year 1986 0.56 0.85 0.19
## 469 Under 10,000 euros/year 1969 0.61 -2.08 1.58
## 470 40,001 - 50,000 euros/year 1942 1.03 -0.79 -0.21
## 471 40,001 - 50,000 euros/year 1974 -1.40 -0.84 0.08
## 472 30,001 - 40,000 euros/year 1984 0.02 0.21 -2.13
## 473 70,001 - 80,000 euros/year 1969 0.25 1.36 -0.34
## 474 20,001 - 30,000 euros/year 1944 0.05 1.08 1.11
## 475 30,001 - 40,000 euros/year 1952 -0.70 -0.94 -1.84
## 476 80,001 - 90,000 euros/year 1942 0.14 2.47 0.04
## 477 50,001 - 60,000 euros/year 1957 0.78 0.37 -0.81
## 478 70,001 - 80,000 euros/year 1942 0.48 0.54 -0.18
## 479 Under 10,000 euros/year 1962 0.47 2.46 0.78
## 480 80,001 - 90,000 euros/year 1974 -0.52 -0.64 0.54
## 481 30,001 - 40,000 euros/year 1955 0.61 -0.72 -0.42
## 482 30,001 - 40,000 euros/year 1942 -0.14 1.29 1.26
## 483 20,001 - 30,000 euros/year 1971 -1.37 0.76 -0.54
## 484 30,001 - 40,000 euros/year 1956 0.53 -1.08 1.68
## 485 30,001 - 40,000 euros/year 1987 0.91 0.71 -0.62
## 486 Over 90,000 euros/year 1958 0.93 -0.86 1.17
## 487 50,001 - 60,000 euros/year 1959 0.49 0.50 -0.30
## 488 60,001 - 70,000 euros/year 1954 0.77 -0.80 0.13
## 489 20,001 - 30,000 euros/year 1952 -1.21 -0.20 -0.93
## 490 70,001 - 80,000 euros/year 1953 -0.49 -0.59 -0.96
## 491 50,001 - 60,000 euros/year 1963 -1.54 0.93 -0.78
## 492 Don't want to say 1989 0.43 -1.69 -0.29
## 493 20,001 - 30,000 euros/year 1953 0.65 -0.02 -1.96
## 494 40,001 - 50,000 euros/year 1955 0.31 0.60 -0.72
## 495 10,000 - 20,000 euros/year 1970 0.66 1.04 1.38
## 496 20,001 - 30,000 euros/year 1962 0.43 2.03 1.45
## 497 20,001 - 30,000 euros/year 1946 0.74 -0.63 -0.80
## 498 Under 10,000 euros/year 1952 0.14 2.06 0.81
## 499 80,001 - 90,000 euros/year 1988 0.89 -0.71 0.15
## 500 30,001 - 40,000 euros/year 1948 0.40 1.34 0.55
## 501 30,001 - 40,000 euros/year 1941 0.73 0.46 0.40
## 502 20,001 - 30,000 euros/year 1949 -1.50 1.84 -1.22
## 503 50,001 - 60,000 euros/year 1967 -0.74 -0.83 0.37
## 504 10,000 - 20,000 euros/year 1946 0.92 -0.11 -0.24
## 505 Don't want to say 1956 0.77 1.41 -0.08
## 506 20,001 - 30,000 euros/year 1955 0.06 0.85 -1.49
## 507 Over 90,000 euros/year 1946 0.09 -0.44 -0.77
## 508 Don't want to say 1956 0.87 0.36 0.46
## 509 50,001 - 60,000 euros/year 1986 0.75 0.53 0.47
## 510 Under 10,000 euros/year 1955 -0.42 -1.01 1.38
## 511 20,001 - 30,000 euros/year 1943 1.07 -1.48 -0.03
## 512 10,000 - 20,000 euros/year 1954 0.71 -1.58 -0.13
## 513 Don't want to say 1963 -0.62 -1.36 -0.85
## 514 20,001 - 30,000 euros/year 1991 -2.44 -0.25 -0.89
## 515 30,001 - 40,000 euros/year 1965 -0.03 0.06 -3.01
## 516 60,001 - 70,000 euros/year 1954 0.71 -0.55 0.15
## 517 70,001 - 80,000 euros/year 1975 -1.91 -0.08 -1.42
## 518 50,001 - 60,000 euros/year 1964 -0.01 -1.43 -1.57
## 519 40,001 - 50,000 euros/year 1944 0.77 0.34 0.14
## 520 60,001 - 70,000 euros/year 1957 0.36 0.41 0.12
## 521 50,001 - 60,000 euros/year 1983 0.88 0.48 0.01
## 522 40,001 - 50,000 euros/year 1948 -0.76 1.32 0.28
## 523 50,001 - 60,000 euros/year 1963 0.76 -1.44 -1.25
## 524 60,001 - 70,000 euros/year 1954 0.56 1.16 0.41
## 525 Under 10,000 euros/year 1989 1.03 -0.44 0.32
## 526 40,001 - 50,000 euros/year 1988 -0.08 0.15 1.63
## 527 40,001 - 50,000 euros/year 1946 0.66 1.49 -0.27
## 528 Don't want to say 1950 -0.08 -1.04 -1.25
## 529 30,001 - 40,000 euros/year 1988 -0.90 1.24 0.46
## 530 40,001 - 50,000 euros/year 1949 0.92 0.62 -0.32
## 531 40,001 - 50,000 euros/year 1948 1.41 -0.23 -0.95
## 532 10,000 - 20,000 euros/year 1945 -2.07 0.79 -0.92
## 533 30,001 - 40,000 euros/year 1987 -4.35 0.23 -0.48
## 534 20,001 - 30,000 euros/year 1968 0.11 -2.09 1.38
## 535 10,000 - 20,000 euros/year 1950 -0.44 -0.01 1.36
## 536 20,001 - 30,000 euros/year 1956 -0.11 -0.33 -1.18
## 537 Over 90,000 euros/year 1972 -0.08 -0.60 -0.08
## 538 Don't want to say 1964 0.80 -0.79 0.81
## 539 40,001 - 50,000 euros/year 1948 0.61 0.32 0.92
## 540 30,001 - 40,000 euros/year 1977 0.91 -0.64 -0.19
## 541 10,000 - 20,000 euros/year 1987 0.82 -0.55 -0.89
## 542 80,001 - 90,000 euros/year 1942 0.30 0.70 -1.12
## 543 40,001 - 50,000 euros/year 1952 0.28 -1.10 1.73
## 544 Don't want to say 1961 0.61 -0.30 -0.40
## 545 70,001 - 80,000 euros/year 1960 0.22 -0.47 0.87
## 546 10,000 - 20,000 euros/year 1959 0.33 -0.36 -0.70
## 547 10,000 - 20,000 euros/year 1989 0.67 -0.57 0.64
## 548 50,001 - 60,000 euros/year 1955 0.91 -0.41 0.13
## 549 10,000 - 20,000 euros/year 1992 0.73 0.44 0.82
## 550 Over 90,000 euros/year 1964 0.57 0.20 0.30
## 551 20,001 - 30,000 euros/year 1948 -0.71 1.55 -0.32
## 552 50,001 - 60,000 euros/year 1980 -2.46 -0.45 -0.13
## 553 30,001 - 40,000 euros/year 1954 -0.78 0.44 0.49
## 554 40,001 - 50,000 euros/year 1946 -0.46 -0.35 0.21
## 555 30,001 - 40,000 euros/year 1953 -0.02 1.48 -0.36
## 556 70,001 - 80,000 euros/year 1963 0.47 -0.52 0.20
## 557 60,001 - 70,000 euros/year 1960 0.15 -0.84 0.55
## 558 40,001 - 50,000 euros/year 1975 0.76 -0.84 0.43
## 559 40,001 - 50,000 euros/year 1947 -0.31 -0.31 -0.47
## 560 20,001 - 30,000 euros/year 1950 -1.79 1.48 -0.16
## 561 80,001 - 90,000 euros/year 1971 0.65 -1.64 -0.70
## 562 60,001 - 70,000 euros/year 1954 -1.96 -1.08 1.61
## 563 40,001 - 50,000 euros/year 1964 0.06 -0.81 0.21
## 564 20,001 - 30,000 euros/year 1978 0.27 -1.27 -0.41
## 565 20,001 - 30,000 euros/year 1961 1.05 -0.70 0.09
## 566 40,001 - 50,000 euros/year 1954 0.94 -0.99 0.85
## 567 40,001 - 50,000 euros/year 1951 0.46 1.97 1.26
## 568 40,001 - 50,000 euros/year 1957 0.03 -0.39 -0.28
## 569 Don't want to say 1953 0.53 -1.55 -1.48
## 570 70,001 - 80,000 euros/year 1980 0.83 -0.99 1.62
## 571 30,001 - 40,000 euros/year 1943 0.46 1.91 1.21
## 572 20,001 - 30,000 euros/year 1947 -1.59 0.81 -1.21
## 573 60,001 - 70,000 euros/year 1961 -0.78 -0.27 -0.37
## 574 60,001 - 70,000 euros/year 1952 0.56 -0.76 0.91
## 575 40,001 - 50,000 euros/year 1950 0.02 0.38 0.13
## 576 40,001 - 50,000 euros/year 1949 0.92 -1.17 1.57
## 577 60,001 - 70,000 euros/year 1973 0.65 0.59 -0.38
## 578 80,001 - 90,000 euros/year 1982 -0.16 2.00 -0.85
## 579 Don't want to say 1947 0.49 1.04 1.15
## 580 30,001 - 40,000 euros/year 1953 -0.49 0.19 -1.82
## 581 20,001 - 30,000 euros/year 1956 0.28 -0.53 -1.37
## 582 40,001 - 50,000 euros/year 1952 0.57 -0.41 -1.20
## 583 30,001 - 40,000 euros/year 1983 1.17 0.68 -0.94
## 584 70,001 - 80,000 euros/year 1949 -0.99 0.99 -0.67
## 585 20,001 - 30,000 euros/year 1946 0.00 0.39 -0.34
## 586 50,001 - 60,000 euros/year 1947 0.62 0.24 -0.40
## 587 60,001 - 70,000 euros/year 1963 0.39 -1.58 -0.19
## 588 70,001 - 80,000 euros/year 1984 -0.07 -0.86 0.82
## 589 Don't want to say 1982 0.80 -1.33 -1.75
## 590 Don't want to say 1946 0.73 -1.09 0.63
## 591 60,001 - 70,000 euros/year 1953 -1.94 -1.30 -0.51
## 592 40,001 - 50,000 euros/year 1962 1.02 -1.28 0.13
## 593 30,001 - 40,000 euros/year 1965 -0.10 1.35 -0.23
## 594 10,000 - 20,000 euros/year 1961 0.82 -1.62 -0.41
## 595 30,001 - 40,000 euros/year 1970 0.41 -0.48 -0.20
## 596 Over 90,000 euros/year 1957 0.35 1.32 1.31
## 597 20,001 - 30,000 euros/year 1972 0.88 -0.16 1.76
## 598 10,000 - 20,000 euros/year 1954 0.44 -0.27 -0.74
## 599 30,001 - 40,000 euros/year 1958 0.05 -0.90 0.71
## 600 10,000 - 20,000 euros/year 1945 0.63 1.59 -1.14
## 601 40,001 - 50,000 euros/year 1977 -1.09 -0.87 0.86
## 602 70,001 - 80,000 euros/year 1970 -3.95 -1.65 -0.92
## 603 20,001 - 30,000 euros/year 1959 -1.26 0.29 0.05
## 604 60,001 - 70,000 euros/year 1961 0.22 -1.86 0.89
## 605 20,001 - 30,000 euros/year 1963 -0.59 -0.30 -0.07
## 606 Under 10,000 euros/year 1966 -0.23 0.37 0.40
## 607 60,001 - 70,000 euros/year 1972 0.58 -1.90 1.24
## 608 50,001 - 60,000 euros/year 1973 0.88 -0.81 0.22
## 609 40,001 - 50,000 euros/year 1947 1.10 -1.21 -0.94
## 610 30,001 - 40,000 euros/year 1943 0.53 -1.19 1.50
## 611 30,001 - 40,000 euros/year 1948 0.56 -0.45 0.30
## 612 10,000 - 20,000 euros/year 1987 1.14 0.17 -2.06
## 613 50,001 - 60,000 euros/year 1949 -0.42 1.16 0.69
## 614 30,001 - 40,000 euros/year 1994 0.84 1.36 0.10
## 615 Over 90,000 euros/year 1943 0.71 -0.75 0.62
## 616 Over 90,000 euros/year 1987 -0.99 0.08 0.86
## 617 30,001 - 40,000 euros/year 1989 0.83 -1.81 0.11
## 618 40,001 - 50,000 euros/year 1989 0.86 0.32 0.21
## 619 50,001 - 60,000 euros/year 1957 0.57 -0.65 -0.73
## 620 Under 10,000 euros/year 1987 0.86 -0.73 0.93
## 621 Don't want to say 1996 0.60 -1.05 1.98
## 622 30,001 - 40,000 euros/year 1971 0.31 -0.75 0.57
## 623 30,001 - 40,000 euros/year 1987 0.11 0.18 -2.13
## 624 60,001 - 70,000 euros/year 1946 0.09 0.61 -0.17
## 625 80,001 - 90,000 euros/year 1966 -0.63 0.29 0.04
## 626 20,001 - 30,000 euros/year 1943 -1.69 -0.52 -0.02
## 627 50,001 - 60,000 euros/year 1956 1.24 0.80 -0.67
## 628 50,001 - 60,000 euros/year 1949 0.96 -1.79 -0.04
## 629 20,001 - 30,000 euros/year 1990 -1.37 -0.39 0.39
## 630 10,000 - 20,000 euros/year 1975 0.65 -2.01 0.99
## 631 10,000 - 20,000 euros/year 1947 0.80 -0.68 0.25
## 632 40,001 - 50,000 euros/year 1994 1.14 0.32 0.22
## 633 Don't want to say 1992 0.52 1.00 -1.52
## 634 30,001 - 40,000 euros/year 1977 0.67 -0.59 -0.08
## 635 Don't want to say 1993 -0.06 0.31 0.46
## 636 Don't want to say 1947 -0.35 0.85 -0.74
## 637 40,001 - 50,000 euros/year 1948 -1.04 0.51 -0.60
## 638 70,001 - 80,000 euros/year 1995 -0.48 -0.06 -1.30
## 639 60,001 - 70,000 euros/year 1958 -0.14 0.46 0.78
## 640 60,001 - 70,000 euros/year 1973 -0.68 1.70 0.87
## 641 40,001 - 50,000 euros/year 1989 0.95 0.59 0.04
## 642 20,001 - 30,000 euros/year 1987 -3.76 0.06 1.57
## 643 Under 10,000 euros/year 1996 -1.07 -0.67 0.77
## 644 70,001 - 80,000 euros/year 1955 0.09 -0.41 -0.31
## 645 20,001 - 30,000 euros/year 1964 -1.00 0.19 0.88
## 646 10,000 - 20,000 euros/year 1991 0.58 -1.27 -0.72
## 647 Under 10,000 euros/year 1956 -0.95 0.37 -0.20
## 648 Don't want to say 1990 0.96 1.78 0.00
## 649 Don't want to say 1956 0.46 0.39 -0.75
## 650 20,001 - 30,000 euros/year 1988 -1.02 -0.82 1.66
## 651 60,001 - 70,000 euros/year 1988 -3.08 0.07 -1.31
## 652 20,001 - 30,000 euros/year 1946 -0.10 0.22 0.20
## 653 30,001 - 40,000 euros/year 1993 1.13 -1.70 1.00
## 654 10,000 - 20,000 euros/year 1996 1.10 -0.71 0.49
## 655 70,001 - 80,000 euros/year 1989 -0.16 -0.46 -1.64
## 656 60,001 - 70,000 euros/year 1962 0.19 -0.13 -1.79
## 657 10,000 - 20,000 euros/year 1993 0.93 -0.68 1.69
## 658 Over 90,000 euros/year 1971 0.77 -0.74 0.19
## 659 10,000 - 20,000 euros/year 1957 -0.45 1.50 0.10
## 660 Don't want to say 1996 -0.34 0.46 -0.07
## 661 20,001 - 30,000 euros/year 1962 -0.77 0.23 1.15
## 662 20,001 - 30,000 euros/year 1975 -1.15 -0.50 0.12
## 663 Don't want to say 1988 -0.69 0.64 0.78
## 664 Under 10,000 euros/year 1991 0.22 1.79 0.44
## 665 30,001 - 40,000 euros/year 1966 0.58 -0.64 -0.03
## 666 20,001 - 30,000 euros/year 1947 -0.61 -0.85 0.23
## 667 Don't want to say 1990 0.45 -1.19 1.55
## 668 40,001 - 50,000 euros/year 1941 0.04 0.37 0.54
## 669 50,001 - 60,000 euros/year 1990 0.29 0.23 1.92
## 670 70,001 - 80,000 euros/year 1945 0.02 -1.14 2.03
## 671 30,001 - 40,000 euros/year 1945 0.56 -1.08 1.18
## 672 60,001 - 70,000 euros/year 1945 -0.20 0.63 -0.46
## 673 30,001 - 40,000 euros/year 1941 -0.93 0.26 0.46
## 674 60,001 - 70,000 euros/year 1974 -0.20 -1.58 -0.46
## 675 30,001 - 40,000 euros/year 1992 -0.51 -0.72 0.65
## 676 Don't want to say 1996 0.82 0.18 1.01
## 677 30,001 - 40,000 euros/year 1989 0.37 1.38 0.24
## 678 Under 10,000 euros/year 1996 0.97 0.30 1.59
## 679 60,001 - 70,000 euros/year 1961 0.45 -0.41 -0.70
## 680 60,001 - 70,000 euros/year 1959 -1.76 -1.38 -0.85
## 681 Under 10,000 euros/year 1991 0.62 -0.33 -0.79
## 682 Over 90,000 euros/year 1948 -0.79 1.71 0.53
## 683 20,001 - 30,000 euros/year 1958 0.92 -1.32 -1.35
## 684 20,001 - 30,000 euros/year 1968 -0.90 2.49 0.81
## 685 Don't want to say 1960 -2.32 -0.45 0.46
## 686 20,001 - 30,000 euros/year 1971 -1.52 -0.48 -0.16
## 687 50,001 - 60,000 euros/year 1949 0.87 -0.83 1.46
## 688 20,001 - 30,000 euros/year 1978 0.03 -1.66 -0.59
## 689 50,001 - 60,000 euros/year 1962 -0.55 -0.12 -1.07
## 690 10,000 - 20,000 euros/year 1941 -2.34 0.36 0.21
## 691 50,001 - 60,000 euros/year 1974 -0.88 -1.44 -1.25
## 692 20,001 - 30,000 euros/year 1952 -0.02 -0.18 -2.70
## 693 20,001 - 30,000 euros/year 1948 0.67 -0.64 1.14
## 694 Don't want to say 1977 0.23 -0.44 -0.94
## 695 10,000 - 20,000 euros/year 1941 -1.19 0.35 0.35
## 696 70,001 - 80,000 euros/year 1994 0.34 -0.27 -0.21
## 697 40,001 - 50,000 euros/year 1942 -0.23 0.31 0.71
## 698 60,001 - 70,000 euros/year 1945 -2.08 0.48 0.23
## 699 Don't want to say 1961 0.86 1.37 0.60
## 700 70,001 - 80,000 euros/year 1950 0.91 -0.46 0.70
## 701 20,001 - 30,000 euros/year 1983 -1.46 -1.49 0.20
## 702 70,001 - 80,000 euros/year 1974 -0.83 -0.44 -0.18
## 703 10,000 - 20,000 euros/year 1952 -0.52 1.38 0.47
## 704 10,000 - 20,000 euros/year 1989 0.00 1.28 0.63
## 705 Under 10,000 euros/year 1995 0.79 0.58 -0.49
## 706 10,000 - 20,000 euros/year 1953 -0.69 0.38 0.61
## 707 Over 90,000 euros/year 1959 0.89 -0.72 0.52
## 708 60,001 - 70,000 euros/year 1967 0.69 -0.46 -1.01
## 709 60,001 - 70,000 euros/year 1966 0.46 1.38 0.36
## 710 Don't want to say 1989 -0.20 -0.72 0.45
## 711 30,001 - 40,000 euros/year NA -0.90 0.22 0.33
## 712 Don't want to say 1955 0.03 -0.48 -0.40
## 713 30,001 - 40,000 euros/year 1953 -1.46 -1.34 -0.36
## 714 60,001 - 70,000 euros/year 1949 1.06 -0.67 -0.39
## 715 Under 10,000 euros/year 1991 -0.62 -0.59 -0.42
## 716 50,001 - 60,000 euros/year 1949 0.73 1.26 0.22
## 717 30,001 - 40,000 euros/year 1959 0.73 0.52 -0.30
## 718 50,001 - 60,000 euros/year 1980 0.72 0.89 -1.63
## 719 10,000 - 20,000 euros/year 1959 0.66 2.40 0.90
## 720 Under 10,000 euros/year 1962 -2.18 0.35 0.59
## 721 10,000 - 20,000 euros/year 1959 -1.61 1.52 -0.16
## 722 Don't want to say 1990 0.88 -0.14 -1.37
## 723 50,001 - 60,000 euros/year 1979 -2.01 -0.27 -0.45
## 724 30,001 - 40,000 euros/year 1943 0.64 -0.98 1.19
## 725 40,001 - 50,000 euros/year 1963 0.11 0.15 0.78
## 726 Over 90,000 euros/year 1974 -0.75 -0.10 1.83
## 727 60,001 - 70,000 euros/year 1992 -0.19 -0.48 -0.34
## 728 Don't want to say 1976 0.57 -0.63 0.89
## 729 Under 10,000 euros/year 1990 -0.04 -1.10 -1.03
## 730 30,001 - 40,000 euros/year 1990 0.61 0.24 1.07
## 731 60,001 - 70,000 euros/year 1949 0.91 -1.23 1.82
## 732 10,000 - 20,000 euros/year 1953 -1.30 -1.26 -0.70
## 733 50,001 - 60,000 euros/year 1949 0.77 0.33 0.12
## 734 Don't want to say 1952 0.77 0.25 0.03
## 735 10,000 - 20,000 euros/year 1984 0.74 -1.58 -1.12
## 736 50,001 - 60,000 euros/year 1964 -0.30 -1.40 -0.89
## 737 40,001 - 50,000 euros/year 1942 -1.26 0.58 0.02
## 738 Don't want to say 1952 0.17 -0.78 0.53
## 739 50,001 - 60,000 euros/year 1951 -0.77 -0.64 1.02
## 740 50,001 - 60,000 euros/year 1946 0.98 1.15 0.56
## 741 30,001 - 40,000 euros/year 1950 -0.59 -0.39 -0.85
## 742 40,001 - 50,000 euros/year 1949 0.46 1.91 1.21
## 743 20,001 - 30,000 euros/year 1952 0.77 0.19 0.31
## 744 20,001 - 30,000 euros/year 1974 -0.88 -0.59 0.00
## 745 50,001 - 60,000 euros/year 1971 0.88 -0.41 -0.35
## 746 60,001 - 70,000 euros/year 1988 -0.58 -0.62 0.54
## 747 20,001 - 30,000 euros/year 1975 -0.50 -0.87 1.13
## 748 60,001 - 70,000 euros/year 1948 0.67 1.11 1.06
## 749 20,001 - 30,000 euros/year 1948 0.55 0.03 1.12
## 750 10,000 - 20,000 euros/year 1953 0.01 0.67 -2.08
## 751 40,001 - 50,000 euros/year 1995 -0.31 1.10 -1.29
## 752 30,001 - 40,000 euros/year 1945 0.76 -0.57 -0.28
## 753 50,001 - 60,000 euros/year 1993 0.40 -1.07 1.62
## 754 20,001 - 30,000 euros/year 1959 1.14 -0.99 -2.94
## 755 40,001 - 50,000 euros/year 1949 0.03 -0.46 -0.38
## 756 50,001 - 60,000 euros/year 1977 0.98 0.70 -0.41
## 757 30,001 - 40,000 euros/year 1985 1.13 -0.02 -1.59
## 758 70,001 - 80,000 euros/year 1960 -1.35 0.59 -0.90
## 759 50,001 - 60,000 euros/year 1957 0.00 -0.50 -0.50
## 760 10,000 - 20,000 euros/year 1954 -0.83 0.19 0.65
## 761 60,001 - 70,000 euros/year 1949 -0.74 0.23 0.31
## 762 40,001 - 50,000 euros/year 1943 -0.61 0.46 0.78
## 763 20,001 - 30,000 euros/year 1983 -0.44 -0.50 -1.21
## 764 Don't want to say 1962 0.83 -0.60 -0.75
## 765 20,001 - 30,000 euros/year 1941 0.78 0.20 -0.16
## 766 80,001 - 90,000 euros/year 1969 0.74 -1.52 0.14
## 767 30,001 - 40,000 euros/year 1989 -2.28 -0.31 -0.83
## 768 10,000 - 20,000 euros/year 1996 0.74 -1.69 -0.32
## 769 10,000 - 20,000 euros/year 1981 -2.09 0.29 1.74
## 770 40,001 - 50,000 euros/year 1947 -2.36 -0.17 -1.00
## 771 30,001 - 40,000 euros/year 1986 -0.71 -1.69 0.02
## 772 Over 90,000 euros/year 1954 0.65 -1.43 -0.32
## 773 70,001 - 80,000 euros/year 1986 -0.01 0.97 -0.33
## 774 70,001 - 80,000 euros/year 1965 -0.53 0.42 0.46
## 775 Under 10,000 euros/year 1990 -0.56 1.18 1.44
## 776 30,001 - 40,000 euros/year 1964 -1.62 -1.43 -1.11
## 777 30,001 - 40,000 euros/year 1962 -1.49 0.29 0.00
## 778 30,001 - 40,000 euros/year 1989 -0.01 0.06 -0.89
## 779 30,001 - 40,000 euros/year 1985 -3.09 -1.87 1.76
## 780 50,001 - 60,000 euros/year 1978 -0.59 -0.75 0.51
## 781 10,000 - 20,000 euros/year 1990 0.48 0.61 -0.77
## 782 80,001 - 90,000 euros/year 1942 -0.99 1.82 -0.89
## 783 30,001 - 40,000 euros/year 1945 0.76 0.47 0.88
## 784 40,001 - 50,000 euros/year 1954 -2.29 0.45 0.10
## 785 70,001 - 80,000 euros/year 1972 0.51 0.84 -1.43
## 786 40,001 - 50,000 euros/year 1942 -0.67 0.37 0.13
## 787 50,001 - 60,000 euros/year 1950 0.27 1.59 -0.13
## 788 Under 10,000 euros/year 1988 0.91 -1.06 2.04
## 789 Under 10,000 euros/year 1971 0.26 -0.78 -1.87
## 790 50,001 - 60,000 euros/year 1942 -1.22 0.47 1.57
## 791 60,001 - 70,000 euros/year 1948 0.16 -0.49 -0.41
## 792 50,001 - 60,000 euros/year 1944 -0.25 1.53 -0.47
## 793 40,001 - 50,000 euros/year 1977 0.51 -0.44 -0.41
## 794 60,001 - 70,000 euros/year 1975 0.79 -1.75 -0.01
## 795 Under 10,000 euros/year 1996 -1.21 -0.89 0.96
## 796 60,001 - 70,000 euros/year 1954 -0.15 0.24 0.68
## 797 10,000 - 20,000 euros/year 1992 0.00 0.51 1.15
## 798 20,001 - 30,000 euros/year 1951 0.02 -0.03 1.31
## 799 50,001 - 60,000 euros/year 1951 0.57 1.34 0.81
## 800 50,001 - 60,000 euros/year 1996 -0.68 -0.75 0.67
## 801 Don't want to say 1948 0.75 -0.86 0.15
## 802 Over 90,000 euros/year 1973 0.81 -0.49 0.64
## 803 10,000 - 20,000 euros/year 1961 -1.09 -0.25 -1.17
## 804 60,001 - 70,000 euros/year 1952 1.29 -0.33 -0.61
## 805 20,001 - 30,000 euros/year 1962 0.38 -0.51 -0.86
## 806 30,001 - 40,000 euros/year 1946 0.26 -0.48 -0.42
## 807 Don't want to say 1990 0.85 0.59 -0.21
## 808 10,000 - 20,000 euros/year 1990 -0.46 -0.66 1.40
## 809 30,001 - 40,000 euros/year 1946 0.90 0.32 0.32
## 810 Don't want to say 1996 -1.12 -0.57 0.11
## 811 Under 10,000 euros/year 1992 -0.50 0.38 0.07
## 812 60,001 - 70,000 euros/year 1981 -0.47 -0.54 0.02
## 813 60,001 - 70,000 euros/year 1951 -0.28 -0.48 -1.40
## 814 60,001 - 70,000 euros/year 1961 0.85 -0.45 -0.68
## 815 70,001 - 80,000 euros/year 1987 -0.24 -0.42 -0.44
## 816 10,000 - 20,000 euros/year 1989 -0.86 -2.05 1.42
## 817 60,001 - 70,000 euros/year 1964 0.57 -0.98 0.92
## 818 10,000 - 20,000 euros/year 1967 -2.26 0.67 -0.83
## 819 20,001 - 30,000 euros/year 1950 -0.71 -0.85 0.04
## 820 80,001 - 90,000 euros/year 1954 -0.74 0.40 -0.37
## 821 40,001 - 50,000 euros/year 1942 0.50 1.21 0.94
## 822 30,001 - 40,000 euros/year 1941 -1.39 0.47 -0.75
## 823 10,000 - 20,000 euros/year 1967 -0.97 0.53 -0.45
## 824 40,001 - 50,000 euros/year 1941 0.71 0.79 -1.57
## 825 30,001 - 40,000 euros/year 1991 -1.77 -0.65 0.82
## 826 30,001 - 40,000 euros/year 1977 0.45 0.71 -0.09
## 827 20,001 - 30,000 euros/year 1956 -0.43 -1.67 -0.63
## 828 Over 90,000 euros/year 1979 -0.33 -0.34 -0.36
## 829 30,001 - 40,000 euros/year 1946 -2.00 -1.29 -1.01
## 830 70,001 - 80,000 euros/year 1984 0.80 1.00 -1.24
## 831 40,001 - 50,000 euros/year 1976 -0.53 -1.36 -0.71
## 832 Under 10,000 euros/year 1986 0.29 -0.78 1.35
## 833 60,001 - 70,000 euros/year 1986 0.75 0.69 -0.31
## 834 20,001 - 30,000 euros/year 1950 -0.29 0.44 0.06
## 835 20,001 - 30,000 euros/year 1956 0.17 -0.76 0.90
## 836 50,001 - 60,000 euros/year 1988 -0.70 0.00 -1.29
## 837 30,001 - 40,000 euros/year 1965 0.42 -1.44 -1.19
## 838 40,001 - 50,000 euros/year 1954 -0.68 0.43 -0.35
## 839 80,001 - 90,000 euros/year 1954 0.54 -0.70 0.94
## 840 20,001 - 30,000 euros/year 1960 0.43 -1.30 -1.55
## 841 Under 10,000 euros/year 1976 0.60 -1.16 1.27
## 842 50,001 - 60,000 euros/year 1984 0.26 0.10 -2.05
## 843 Don't want to say 1961 -1.29 -0.44 -0.61
## 844 10,000 - 20,000 euros/year 1989 0.59 -1.79 0.98
## 845 60,001 - 70,000 euros/year 1986 0.59 -1.08 2.02
## 846 20,001 - 30,000 euros/year 1952 0.38 -1.11 -2.16
## 847 30,001 - 40,000 euros/year 1982 0.61 -0.64 0.24
## 848 Over 90,000 euros/year 1949 0.93 -0.69 0.02
## 849 10,000 - 20,000 euros/year 1953 0.14 -0.25 -0.56
## 850 40,001 - 50,000 euros/year 1967 -0.14 0.50 -0.74
## 851 Under 10,000 euros/year 1991 0.69 -1.77 0.22
## 852 40,001 - 50,000 euros/year 1967 0.53 -0.07 0.51
## 853 50,001 - 60,000 euros/year 1967 0.63 -1.79 0.21
## 854 20,001 - 30,000 euros/year 1988 0.00 -1.43 -0.10
## 855 Don't want to say 1997 1.13 -1.53 -1.29
## 856 30,001 - 40,000 euros/year 1953 0.36 -0.53 -0.33
## 857 60,001 - 70,000 euros/year 1944 -1.06 0.54 -0.30
## 858 50,001 - 60,000 euros/year 1985 0.73 -1.00 1.53
## 859 50,001 - 60,000 euros/year 1949 0.49 0.88 1.28
## 860 20,001 - 30,000 euros/year 1986 0.62 -0.16 -1.34
## 861 70,001 - 80,000 euros/year 1949 -0.52 0.91 -1.09
## 862 Over 90,000 euros/year 1947 0.23 1.48 0.72
## 863 40,001 - 50,000 euros/year 1942 0.46 0.37 1.19
## 864 60,001 - 70,000 euros/year 1965 -0.01 1.50 0.17
## 865 20,001 - 30,000 euros/year 1941 -0.83 0.48 -0.35
## 866 30,001 - 40,000 euros/year 1991 0.01 0.98 -1.45
## 867 10,000 - 20,000 euros/year 1958 -2.07 -0.89 1.65
## 868 60,001 - 70,000 euros/year 1947 0.88 0.52 0.03
## 869 40,001 - 50,000 euros/year 1980 -0.94 1.94 -0.63
## 870 80,001 - 90,000 euros/year 1974 0.76 -1.01 0.89
## 871 Don't want to say 1976 -2.34 -0.63 -0.45
## 872 40,001 - 50,000 euros/year 1949 0.67 0.75 -1.30
## 873 50,001 - 60,000 euros/year 1955 -0.12 1.39 0.26
## 874 20,001 - 30,000 euros/year 1957 -0.01 0.04 -3.37
## 875 50,001 - 60,000 euros/year 1950 0.43 -0.69 -1.04
## 876 Over 90,000 euros/year 1956 -1.04 1.21 0.61
## 877 Over 90,000 euros/year 1971 0.98 -2.22 1.42
## 878 40,001 - 50,000 euros/year 1946 -0.64 -0.91 1.58
## 879 50,001 - 60,000 euros/year 1977 0.29 -1.73 0.46
## 880 80,001 - 90,000 euros/year 1966 -0.04 -0.59 -0.49
## 881 20,001 - 30,000 euros/year 1973 1.09 -0.35 -0.12
## 882 40,001 - 50,000 euros/year 1942 -1.50 1.29 0.63
## 883 30,001 - 40,000 euros/year 1955 0.52 -0.51 -0.46
## 884 80,001 - 90,000 euros/year 1999 0.69 -0.65 0.71
## 885 Don't want to say 1973 0.27 1.87 -1.60
## 886 30,001 - 40,000 euros/year 1958 0.89 -0.71 0.73
## 887 20,001 - 30,000 euros/year 1947 -0.07 0.71 -1.50
## 888 60,001 - 70,000 euros/year 1970 0.82 0.56 -1.02
## 889 40,001 - 50,000 euros/year 1973 0.80 0.82 -0.34
## 890 20,001 - 30,000 euros/year 1942 -2.29 -0.49 -0.73
## 891 Don't want to say 1990 0.15 -0.43 -1.38
## 892 10,000 - 20,000 euros/year 1947 -0.49 -0.54 -0.19
## 893 40,001 - 50,000 euros/year 1958 0.76 -1.54 -1.52
## 894 60,001 - 70,000 euros/year 1978 1.23 0.75 0.25
## 895 60,001 - 70,000 euros/year 1962 -2.58 -0.39 0.67
## 896 60,001 - 70,000 euros/year 1959 0.55 -0.81 0.85
## 897 20,001 - 30,000 euros/year 1962 1.90 -0.86 -1.68
## 898 Don't want to say 1973 -0.34 -0.62 -0.44
## 899 20,001 - 30,000 euros/year 1944 -1.18 -0.01 1.01
## 900 10,000 - 20,000 euros/year 1948 -0.29 1.29 1.02
## 901 70,001 - 80,000 euros/year 1971 0.01 0.22 0.77
## 902 Under 10,000 euros/year 1955 -2.12 -0.57 -0.81
## 903 40,001 - 50,000 euros/year 1974 -3.56 0.08 -2.10
## 904 30,001 - 40,000 euros/year 1972 1.19 0.08 -1.70
## 905 Over 90,000 euros/year 1960 -0.74 1.25 0.60
## 906 30,001 - 40,000 euros/year 1955 0.88 0.69 -0.72
## 907 80,001 - 90,000 euros/year 1972 0.02 -0.61 -0.10
## 908 10,000 - 20,000 euros/year 1964 0.64 0.19 0.48
## 909 10,000 - 20,000 euros/year 1970 1.07 -0.87 -2.22
## 910 Under 10,000 euros/year 1952 0.09 -1.32 -1.28
## 911 20,001 - 30,000 euros/year 1987 0.43 -0.58 -0.67
## 912 Over 90,000 euros/year 1948 0.12 0.64 -0.30
## 913 40,001 - 50,000 euros/year 1966 0.85 1.44 0.18
## 914 30,001 - 40,000 euros/year 1975 0.61 1.84 -0.63
## 915 40,001 - 50,000 euros/year 1963 -0.73 1.22 0.68
## 916 30,001 - 40,000 euros/year 1968 -5.85 -1.97 1.81
## 917 50,001 - 60,000 euros/year 1977 -0.49 -1.61 -0.21
## 918 Don't want to say 1955 0.60 -1.61 -0.21
## 919 20,001 - 30,000 euros/year 1972 0.74 -0.11 -1.26
## 920 40,001 - 50,000 euros/year 1948 0.02 -0.49 -0.59
## 921 60,001 - 70,000 euros/year 1956 -0.07 -0.82 1.30
## 922 Don't want to say 1971 0.96 -0.17 -1.15
## 923 30,001 - 40,000 euros/year 1967 0.62 -0.50 -0.94
## 924 Don't want to say 1950 -3.01 2.48 0.64
## 925 50,001 - 60,000 euros/year 1954 1.27 0.56 0.62
## 926 30,001 - 40,000 euros/year 1987 -1.69 0.11 -4.04
## 927 60,001 - 70,000 euros/year 1974 -3.01 -0.77 2.19
## 928 Don't want to say 1976 -0.74 1.52 0.03
## 929 80,001 - 90,000 euros/year 1957 0.82 0.82 -0.85
## 930 60,001 - 70,000 euros/year 1975 0.49 -1.45 -0.53
## 931 80,001 - 90,000 euros/year 1971 1.03 -0.08 -2.08
## 932 70,001 - 80,000 euros/year 1973 -0.03 1.61 -1.97
## 933 Don't want to say 1950 0.53 1.10 1.04
## 934 10,000 - 20,000 euros/year 1983 -1.12 0.83 -0.93
## 935 40,001 - 50,000 euros/year 1953 -0.70 1.14 1.02
## 936 60,001 - 70,000 euros/year 1967 0.25 1.69 -1.68
## 937 30,001 - 40,000 euros/year 1948 0.10 -0.11 0.88
## 938 Over 90,000 euros/year 1958 -0.43 -0.42 -0.90
## 939 30,001 - 40,000 euros/year 1955 0.86 -0.59 0.02
## 940 50,001 - 60,000 euros/year 1978 0.96 -0.48 -0.61
## 941 20,001 - 30,000 euros/year 1953 -0.92 1.62 -0.67
## 942 30,001 - 40,000 euros/year 1943 -1.01 -0.22 -0.50
## 943 10,000 - 20,000 euros/year 1977 0.97 0.64 -0.97
## 944 70,001 - 80,000 euros/year 1959 0.74 -1.42 -0.48
## 945 60,001 - 70,000 euros/year 1961 0.91 0.54 0.23
## 946 80,001 - 90,000 euros/year 1980 -0.07 1.06 -1.64
## 947 30,001 - 40,000 euros/year 1976 0.51 -0.05 1.17
## 948 10,000 - 20,000 euros/year 1944 -0.01 -0.68 0.48
## 949 60,001 - 70,000 euros/year 1980 0.58 -0.96 0.50
## 950 30,001 - 40,000 euros/year 1966 -0.85 0.85 -1.40
## 951 60,001 - 70,000 euros/year 1960 -0.35 -1.27 -1.35
## 952 30,001 - 40,000 euros/year 1964 -2.07 -0.43 -0.50
## 953 Don't want to say 1973 -0.66 0.37 -0.48
## 954 30,001 - 40,000 euros/year 1963 0.53 -1.02 1.40
## 955 20,001 - 30,000 euros/year 1953 -0.64 0.52 -0.17
## 956 40,001 - 50,000 euros/year 1953 -0.79 0.59 -1.26
## 957 10,000 - 20,000 euros/year 1952 -0.58 0.53 -0.48
## 958 60,001 - 70,000 euros/year 1948 0.53 0.03 0.85
## 959 30,001 - 40,000 euros/year 1945 -1.25 -0.10 -2.43
## 960 40,001 - 50,000 euros/year 1960 -0.83 -0.70 0.39
## 961 10,000 - 20,000 euros/year 1968 -0.93 -0.07 -1.28
## 962 20,001 - 30,000 euros/year 1960 1.02 -0.19 -0.60
## 963 70,001 - 80,000 euros/year 1973 -0.67 -0.80 -0.59
## 964 Don't want to say 1947 1.02 1.72 0.24
## 965 60,001 - 70,000 euros/year 1964 -0.46 -0.14 -1.95
## 966 40,001 - 50,000 euros/year 1952 0.12 -0.93 0.70
## 967 Don't want to say 1953 -0.37 0.80 -0.70
## 968 30,001 - 40,000 euros/year 1964 0.71 0.47 0.08
## 969 10,000 - 20,000 euros/year 1985 -0.69 0.71 -1.11
## 970 Don't want to say 1965 0.11 0.40 -0.74
## 971 50,001 - 60,000 euros/year 1973 0.74 -0.45 1.04
## 972 20,001 - 30,000 euros/year 1973 0.74 -2.01 1.40
## 973 20,001 - 30,000 euros/year 1949 1.03 -0.50 -0.77
## 974 60,001 - 70,000 euros/year 1973 -0.84 -0.13 -1.48
## 975 20,001 - 30,000 euros/year 1955 0.80 1.34 0.63
## 976 50,001 - 60,000 euros/year 1973 -0.29 1.96 -0.68
## 977 50,001 - 60,000 euros/year 1947 -1.13 1.06 1.38
## 978 30,001 - 40,000 euros/year 1974 0.95 -1.48 -0.10
## 979 40,001 - 50,000 euros/year 1957 0.18 -0.50 -0.55
## 980 10,000 - 20,000 euros/year 1960 -1.31 -1.40 -1.34
## 981 20,001 - 30,000 euros/year 1990 0.44 0.43 -0.19
## 982 40,001 - 50,000 euros/year 1980 0.03 -0.54 -0.12
## 983 Don't want to say 1962 0.71 0.14 1.20
## 984 Don't want to say 1951 0.40 0.70 -1.39
## 985 20,001 - 30,000 euros/year 1951 0.04 0.73 -1.16
## 986 Don't want to say 1974 -1.27 -0.06 -0.92
## 987 20,001 - 30,000 euros/year 1976 -2.15 -1.66 0.05
## 988 60,001 - 70,000 euros/year 1946 0.52 0.64 -0.81
## 989 Under 10,000 euros/year 1957 -1.81 -1.70 0.54
## 990 30,001 - 40,000 euros/year 1991 0.86 -0.74 0.83
## 991 30,001 - 40,000 euros/year 1951 -1.42 0.58 -0.94
## 992 10,000 - 20,000 euros/year 1951 0.29 0.59 -1.02
## 993 20,001 - 30,000 euros/year 1957 -0.65 -0.09 1.12
## 994 40,001 - 50,000 euros/year 1987 1.17 -0.51 0.52
## 995 40,001 - 50,000 euros/year 1960 0.77 0.24 0.00
## 996 20,001 - 30,000 euros/year 1948 -0.31 -0.44 0.32
## 997 20,001 - 30,000 euros/year 1956 0.83 0.41 -0.10
## 998 20,001 - 30,000 euros/year 1949 -0.94 -0.04 -3.13
## 999 60,001 - 70,000 euros/year 1954 0.98 -0.52 -0.15
## 1000 Under 10,000 euros/year 1989 -0.69 -0.42 1.84
## 1001 Don't want to say 1963 -2.48 -2.11 1.47
## 1002 Over 90,000 euros/year 1948 0.49 0.94 1.33
## 1003 40,001 - 50,000 euros/year 1942 0.50 1.30 1.06
## 1004 40,001 - 50,000 euros/year 1984 -0.35 -0.03 -0.27
## 1005 Don't want to say 1991 0.44 2.32 2.12
## 1006 80,001 - 90,000 euros/year 1978 0.79 0.59 0.14
## 1007 Don't want to say 1950 -0.75 1.19 0.55
## 1008 30,001 - 40,000 euros/year 1971 -0.16 -1.90 0.07
## 1009 50,001 - 60,000 euros/year 1946 -1.02 1.28 0.86
## 1010 20,001 - 30,000 euros/year 1987 1.21 -2.04 1.76
## 1011 60,001 - 70,000 euros/year 1983 -1.22 1.48 -0.54
## 1012 Over 90,000 euros/year 1994 1.10 1.77 2.17
## 1013 Under 10,000 euros/year 1992 0.44 -0.65 0.73
## 1014 Don't want to say 1947 -0.53 0.88 -1.08
## 1015 60,001 - 70,000 euros/year 1951 -1.58 0.58 -0.61
## 1016 Over 90,000 euros/year 1949 0.62 0.18 0.68
## 1017 30,001 - 40,000 euros/year 1955 1.00 -1.78 0.40
## 1018 50,001 - 60,000 euros/year 1969 0.41 -0.70 0.01
## 1019 30,001 - 40,000 euros/year 1947 0.81 1.12 1.07
## 1020 80,001 - 90,000 euros/year 1962 -1.93 -0.38 -0.25
## 1021 20,001 - 30,000 euros/year 1981 1.01 -0.87 1.18
## 1022 70,001 - 80,000 euros/year 1973 -0.36 -0.51 -0.32
## 1023 80,001 - 90,000 euros/year 1956 -1.72 -0.35 -1.04
## 1024 40,001 - 50,000 euros/year 1975 0.82 0.51 -0.67
## 1025 20,001 - 30,000 euros/year 1957 0.11 -0.27 -1.28
## 1026 50,001 - 60,000 euros/year 1985 1.09 -0.68 0.68
## 1027 Under 10,000 euros/year 1970 0.49 -1.79 1.05
## 1028 50,001 - 60,000 euros/year 1964 0.36 -1.28 -1.88
## 1029 20,001 - 30,000 euros/year 1972 0.43 2.03 1.45
## 1030 20,001 - 30,000 euros/year 1992 0.90 0.20 0.30
## 1031 10,000 - 20,000 euros/year 1990 0.76 -0.94 1.59
## 1032 Under 10,000 euros/year 1988 0.96 -1.70 -0.08
## 1033 Under 10,000 euros/year 1995 -1.90 -0.54 1.77
## 1034 30,001 - 40,000 euros/year 1945 0.60 -0.20 -1.61
## 1035 20,001 - 30,000 euros/year 1956 -0.59 -0.31 -0.84
## 1036 70,001 - 80,000 euros/year 1961 -0.35 -0.30 -1.20
## 1037 30,001 - 40,000 euros/year 1972 0.00 -0.31 -1.45
## 1038 50,001 - 60,000 euros/year 1961 -0.30 -0.27 -1.23
## 1039 30,001 - 40,000 euros/year 1951 0.59 0.13 0.48
## 1040 80,001 - 90,000 euros/year 1987 0.69 1.30 0.62
## 1041 80,001 - 90,000 euros/year 1971 0.46 1.07 0.74
## 1042 10,000 - 20,000 euros/year 1957 -0.01 2.19 1.59
## 1043 30,001 - 40,000 euros/year 1955 -0.87 1.41 0.26
## 1044 Under 10,000 euros/year 1990 0.24 0.85 -0.74
## 1045 80,001 - 90,000 euros/year 1979 0.57 -0.97 -2.19
## 1046 40,001 - 50,000 euros/year 1951 0.50 -1.85 -0.32
## 1047 60,001 - 70,000 euros/year 1986 0.19 2.05 1.50
## 1048 Over 90,000 euros/year 1970 0.52 0.39 0.63
## 1049 60,001 - 70,000 euros/year 1952 0.44 -0.40 -0.10
## 1050 80,001 - 90,000 euros/year 1958 -0.02 0.55 -0.54
## 1051 20,001 - 30,000 euros/year 1948 -0.48 0.37 0.71
## 1052 30,001 - 40,000 euros/year 1974 0.70 0.44 0.40
## 1053 Over 90,000 euros/year 1981 -0.54 0.84 -1.46
## 1054 20,001 - 30,000 euros/year 1951 -0.60 0.25 0.50
## 1055 20,001 - 30,000 euros/year 1988 1.00 0.27 0.72
## 1056 40,001 - 50,000 euros/year 1971 0.06 -0.39 -0.61
## 1057 50,001 - 60,000 euros/year 1953 0.23 0.54 -0.92
## 1058 40,001 - 50,000 euros/year 1952 0.88 -0.81 1.02
## 1059 30,001 - 40,000 euros/year 1969 0.48 -0.39 -1.49
## 1060 50,001 - 60,000 euros/year 1966 0.44 -0.68 -0.87
## 1061 Over 90,000 euros/year 1949 0.48 1.10 1.27
## 1062 60,001 - 70,000 euros/year 1951 -0.31 1.40 -0.45
## 1063 40,001 - 50,000 euros/year 1981 0.11 -1.11 -1.26
## 1064 70,001 - 80,000 euros/year 1977 0.56 -0.73 0.09
## 1065 60,001 - 70,000 euros/year 1964 0.68 -0.02 1.07
## 1066 Don't want to say 1985 -0.76 1.32 0.28
## 1067 Don't want to say 1992 0.81 0.72 -0.38
## 1068 10,000 - 20,000 euros/year 1954 -1.48 1.27 0.60
## 1069 70,001 - 80,000 euros/year 1963 0.51 0.12 1.40
## 1070 20,001 - 30,000 euros/year 1954 -1.01 -0.42 -0.99
## 1071 10,000 - 20,000 euros/year 1953 0.74 -1.06 -3.62
## 1072 Under 10,000 euros/year 1979 -2.33 1.83 0.21
## 1073 60,001 - 70,000 euros/year 1963 0.91 -0.63 0.33
## 1074 50,001 - 60,000 euros/year 1968 0.67 -1.14 1.62
## 1075 Under 10,000 euros/year 1997 0.70 0.14 1.26
## 1076 60,001 - 70,000 euros/year 1954 -0.07 -0.53 -0.87
## 1077 Under 10,000 euros/year 1968 0.23 -0.84 0.43
## 1078 Don't want to say 1983 -0.45 0.79 -0.33
## 1079 Don't want to say 1967 0.96 -0.52 -1.27
## 1080 Over 90,000 euros/year 1974 0.83 0.40 0.70
## 1081 Over 90,000 euros/year 1966 0.90 0.13 0.56
## 1082 30,001 - 40,000 euros/year 1968 0.32 1.21 0.90
## 1083 80,001 - 90,000 euros/year 1981 -0.62 1.34 0.14
## 1084 Over 90,000 euros/year 1974 0.09 0.72 -1.42
## 1085 10,000 - 20,000 euros/year 1995 1.23 -0.43 -0.76
## 1086 30,001 - 40,000 euros/year 1953 -1.24 0.20 0.41
## 1087 Don't want to say 1988 -3.49 -0.58 0.74
## 1088 10,000 - 20,000 euros/year 1996 0.75 0.20 0.54
## 1089 70,001 - 80,000 euros/year 1953 0.71 -1.66 0.07
## 1090 30,001 - 40,000 euros/year 1984 -1.17 0.69 -0.81
## 1091 10,000 - 20,000 euros/year 1950 0.53 -0.34 -1.06
## 1092 40,001 - 50,000 euros/year 1954 -0.19 -0.57 0.06
## 1093 40,001 - 50,000 euros/year 1958 0.38 -0.59 0.41
## 1094 10,000 - 20,000 euros/year 1995 1.17 0.36 1.14
## 1095 30,001 - 40,000 euros/year 1982 0.06 0.36 -0.67
## 1096 40,001 - 50,000 euros/year 1999 -0.72 0.69 -0.44
## 1097 10,000 - 20,000 euros/year 1977 -2.73 -0.27 -0.77
## 1098 60,001 - 70,000 euros/year 1953 0.16 -1.38 -1.29
## 1099 Over 90,000 euros/year 1953 0.87 1.06 0.90
## 1100 Don't want to say 1998 0.66 1.40 0.16
## 1101 Over 90,000 euros/year 1978 0.62 0.44 0.13
## 1102 50,001 - 60,000 euros/year 1950 -0.75 0.65 -0.06
## 1103 Don't want to say 1987 -0.83 0.80 -1.60
## 1104 20,001 - 30,000 euros/year 1988 1.09 0.90 -0.90
## 1105 30,001 - 40,000 euros/year 1960 0.47 -1.40 -1.75
## 1106 10,000 - 20,000 euros/year 1993 0.50 -1.31 -0.52
## 1107 Don't want to say 2000 -1.43 0.51 0.04
## 1108 Under 10,000 euros/year 1995 -0.96 0.57 -0.61
## 1109 Don't want to say 1990 -0.25 1.00 1.25
## 1110 80,001 - 90,000 euros/year 1976 -0.49 0.43 -0.15
## 1111 50,001 - 60,000 euros/year 1950 -1.33 0.09 -0.63
## 1112 50,001 - 60,000 euros/year 1967 -0.65 -1.83 0.73
## 1113 30,001 - 40,000 euros/year 1951 0.75 -0.69 0.02
## 1114 Don't want to say 1973 1.37 -1.06 0.58
## 1115 20,001 - 30,000 euros/year 1945 -1.32 -1.41 -0.26
## 1116 Don't want to say 1988 1.17 -0.57 0.59
## 1117 60,001 - 70,000 euros/year 1986 -0.32 1.34 0.40
## 1118 40,001 - 50,000 euros/year 1992 1.10 -0.70 -0.09
## 1119 20,001 - 30,000 euros/year 1954 0.15 -0.61 0.10
## 1120 Don't want to say 1975 -0.30 1.78 0.34
## 1121 Under 10,000 euros/year 1999 0.47 -1.75 0.60
## 1122 60,001 - 70,000 euros/year 1984 0.55 1.20 -0.06
## 1123 50,001 - 60,000 euros/year 1996 1.04 -0.92 1.52
## 1124 70,001 - 80,000 euros/year 1961 0.75 0.53 0.47
## 1125 Don't want to say 1965 0.13 -0.36 -0.77
## 1126 60,001 - 70,000 euros/year 1954 0.33 0.28 0.25
## 1127 50,001 - 60,000 euros/year 1960 0.30 -0.56 -0.42
## 1128 20,001 - 30,000 euros/year 1959 0.45 -0.37 -0.10
## 1129 Don't want to say 1980 -0.45 -0.30 -0.43
## 1130 70,001 - 80,000 euros/year 1982 0.90 -0.54 0.22
## 1131 70,001 - 80,000 euros/year 1980 0.02 -0.57 0.93
## 1132 Over 90,000 euros/year 1984 0.72 1.58 -0.46
## 1133 Don't want to say 1959 -0.42 -0.51 -1.06
## 1134 10,000 - 20,000 euros/year 1995 1.06 2.60 0.31
## 1135 70,001 - 80,000 euros/year 1950 0.48 -0.80 0.60
## 1136 80,001 - 90,000 euros/year 1979 1.09 -0.04 -1.28
## 1137 60,001 - 70,000 euros/year 1984 -1.27 -0.89 1.15
## 1138 20,001 - 30,000 euros/year 1990 0.44 -0.69 0.88
## 1139 Don't want to say 1994 -0.32 1.33 0.67
## 1140 70,001 - 80,000 euros/year 1974 -0.23 -0.38 0.96
## 1141 Don't want to say 1989 0.28 -0.45 -1.14
## 1142 50,001 - 60,000 euros/year 1979 0.81 -0.86 0.82
## 1143 20,001 - 30,000 euros/year 1959 0.54 0.42 -0.42
## 1144 50,001 - 60,000 euros/year 1983 1.28 -0.31 -0.47
## 1145 Over 90,000 euros/year 1966 0.18 1.15 -1.78
## 1146 60,001 - 70,000 euros/year 1973 -1.80 -0.77 0.08
## 1147 Under 10,000 euros/year 1971 -2.88 -1.98 1.84
## 1148 10,000 - 20,000 euros/year 1952 -1.46 -0.03 -1.89
## 1149 Don't want to say 1981 0.62 0.42 -0.35
## 1150 10,000 - 20,000 euros/year 1952 -0.35 -0.55 -0.61
## 1151 50,001 - 60,000 euros/year 1972 -1.89 -0.40 -0.53
## 1152 Under 10,000 euros/year 2002 1.00 -0.79 0.29
## 1153 10,000 - 20,000 euros/year 1995 1.00 -0.50 0.68
## 1154 60,001 - 70,000 euros/year 1971 -3.21 0.14 -1.56
## 1155 20,001 - 30,000 euros/year 1983 0.18 -0.84 0.61
## 1156 Under 10,000 euros/year 1991 -0.77 -0.91 1.35
## 1157 40,001 - 50,000 euros/year 1983 1.01 1.34 1.61
## 1158 20,001 - 30,000 euros/year 1972 1.10 -0.26 -0.62
## 1159 30,001 - 40,000 euros/year 1969 0.80 -1.75 0.94
## 1160 40,001 - 50,000 euros/year 1986 0.42 -0.45 -1.42
## 1161 70,001 - 80,000 euros/year 1972 -3.21 0.07 -1.94
## 1162 60,001 - 70,000 euros/year 1988 0.21 -0.47 -0.71
## 1163 60,001 - 70,000 euros/year 1949 -1.86 -0.50 0.00
## 1164 Don't want to say 2000 1.00 0.17 1.63
## 1165 20,001 - 30,000 euros/year 1947 -0.21 1.56 -0.84
## 1166 70,001 - 80,000 euros/year 1953 0.54 -0.44 -0.69
## 1167 20,001 - 30,000 euros/year 1949 0.45 -0.45 -0.29
## 1168 Under 10,000 euros/year 1995 -1.55 -0.58 -0.35
## 1169 Don't want to say 1992 0.80 -0.27 -1.51
## 1170 30,001 - 40,000 euros/year 1980 -0.01 -0.13 -0.41
## 1171 40,001 - 50,000 euros/year NA -0.39 -0.45 -1.31
## 1172 20,001 - 30,000 euros/year 1997 0.39 0.18 0.52
## 1173 60,001 - 70,000 euros/year 1971 0.58 -1.94 0.82
## 1174 Over 90,000 euros/year 1977 0.69 2.10 0.86
## 1175 Under 10,000 euros/year 1981 -0.21 -1.58 0.29
## 1176 Under 10,000 euros/year 1991 1.07 -1.04 2.00
## 1177 Don't want to say 1998 0.83 -0.63 0.12
## 1178 40,001 - 50,000 euros/year 1954 0.96 -0.52 -0.08
## 1179 Don't want to say 1954 -0.68 0.87 -1.42
## 1180 50,001 - 60,000 euros/year 1991 -0.85 0.12 0.97
## 1181 20,001 - 30,000 euros/year 1960 -0.90 -0.44 -0.30
## 1182 60,001 - 70,000 euros/year 1984 -0.34 0.39 0.57
## 1183 20,001 - 30,000 euros/year 1953 -1.46 1.50 0.34
## 1184 40,001 - 50,000 euros/year 1954 -0.83 -1.61 0.26
## 1185 70,001 - 80,000 euros/year 1980 -0.08 -0.75 0.26
## 1186 50,001 - 60,000 euros/year 1991 0.21 1.64 0.08
## 1187 60,001 - 70,000 euros/year 1976 -0.67 -0.32 0.25
## 1188 70,001 - 80,000 euros/year 1976 1.28 -0.30 -0.55
## 1189 60,001 - 70,000 euros/year 1980 0.54 -0.30 -0.40
## 1190 60,001 - 70,000 euros/year 1964 1.20 -1.03 -1.81
## 1191 10,000 - 20,000 euros/year 1991 -0.53 -0.74 0.83
## 1192 Don't want to say 1998 0.18 -0.59 0.83
## 1193 70,001 - 80,000 euros/year 1977 0.76 0.39 -0.45
## 1194 60,001 - 70,000 euros/year 1955 -0.15 -0.60 -0.19
## 1195 30,001 - 40,000 euros/year 1976 -2.22 -0.30 -1.56
## 1196 30,001 - 40,000 euros/year 1949 0.94 0.58 -0.69
## 1197 60,001 - 70,000 euros/year 1973 -0.36 -0.94 -1.72
## 1198 Don't want to say 1965 -0.19 -1.80 -0.68
## 1199 20,001 - 30,000 euros/year 1941 0.59 1.33 -0.42
## 1200 Don't want to say 1989 0.80 -0.05 -1.36
## 1201 20,001 - 30,000 euros/year 1978 0.07 -0.59 -0.19
## 1202 60,001 - 70,000 euros/year 1984 -0.01 0.57 -1.38
## 1203 30,001 - 40,000 euros/year 1966 1.09 -0.36 -1.50
## 1204 60,001 - 70,000 euros/year 1983 0.58 -0.62 -0.42
## 1205 40,001 - 50,000 euros/year 1966 0.38 -0.26 -0.60
## 1206 Over 90,000 euros/year 1976 0.94 -0.79 0.74
## 1207 50,001 - 60,000 euros/year 1953 -0.78 1.48 0.71
## 1208 50,001 - 60,000 euros/year 1962 -0.76 1.40 0.37
## 1209 20,001 - 30,000 euros/year 1961 1.15 -1.25 -1.55
## 1210 10,000 - 20,000 euros/year 1994 0.47 0.53 1.51
## 1211 40,001 - 50,000 euros/year 1957 -0.46 0.60 -0.64
## 1212 30,001 - 40,000 euros/year 1988 -0.58 -0.58 0.21
## 1213 60,001 - 70,000 euros/year 1993 1.44 -0.61 -2.92
## 1214 40,001 - 50,000 euros/year 1974 0.85 0.76 -0.62
## 1215 Over 90,000 euros/year 1977 0.61 0.39 -0.22
## 1216 Under 10,000 euros/year 1997 -0.88 -0.59 1.08
## 1217 Over 90,000 euros/year 1986 -0.07 -0.12 1.92
## 1218 Under 10,000 euros/year 1994 0.30 0.73 0.20
## 1219 40,001 - 50,000 euros/year 1954 -0.22 1.51 0.20
## 1220 20,001 - 30,000 euros/year 1957 -1.04 1.29 0.16
## 1221 60,001 - 70,000 euros/year 1998 0.33 2.82 0.06
## 1222 Over 90,000 euros/year 1980 1.04 0.59 0.08
## 1223 Under 10,000 euros/year 1958 -0.21 -1.58 0.29
## 1224 40,001 - 50,000 euros/year 1970 -1.62 1.08 1.24
## 1225 20,001 - 30,000 euros/year 1993 0.55 -0.90 1.25
## 1226 20,001 - 30,000 euros/year 1996 1.08 -1.84 1.21
## 1227 30,001 - 40,000 euros/year 1953 0.52 0.76 -0.80
## 1228 30,001 - 40,000 euros/year 1994 0.79 0.28 0.49
## 1229 Over 90,000 euros/year 1961 0.06 0.53 -0.33
## 1230 30,001 - 40,000 euros/year 1993 1.05 -0.03 -0.88
## 1231 40,001 - 50,000 euros/year 1993 0.93 0.47 -0.36
## 1232 Don't want to say 1975 1.04 -1.23 -2.94
## 1233 70,001 - 80,000 euros/year 1979 0.64 -0.88 0.53
## 1234 20,001 - 30,000 euros/year 1986 0.58 -0.83 -0.09
## 1235 10,000 - 20,000 euros/year 1994 1.06 0.49 0.27
## 1236 20,001 - 30,000 euros/year 1987 0.55 0.56 -0.28
## 1237 40,001 - 50,000 euros/year 1985 0.70 -0.75 0.64
## 1238 Don't want to say 2002 1.14 1.01 -0.76
## 1239 30,001 - 40,000 euros/year 1990 -0.63 -0.50 0.04
## 1240 20,001 - 30,000 euros/year 1950 0.64 1.05 1.81
## 1241 50,001 - 60,000 euros/year 1961 -4.14 -0.83 2.90
## 1242 10,000 - 20,000 euros/year 1993 -0.81 -1.28 0.06
## 1243 60,001 - 70,000 euros/year 1955 0.45 0.36 0.84
## 1244 80,001 - 90,000 euros/year 1966 0.23 0.23 -0.28
## 1245 10,000 - 20,000 euros/year 1983 -1.92 2.93 -0.49
## 1246 10,000 - 20,000 euros/year 1987 -0.41 0.38 0.08
## 1247 Don't want to say 1998 0.46 1.91 1.21
## 1248 40,001 - 50,000 euros/year 1984 0.66 0.43 -0.12
## 1249 30,001 - 40,000 euros/year 1962 -1.75 0.40 -0.31
## 1250 10,000 - 20,000 euros/year 1990 -0.43 -0.98 2.70
## 1251 Don't want to say 1987 0.15 1.19 0.23
## 1252 50,001 - 60,000 euros/year 1973 1.17 -1.67 0.11
## 1253 50,001 - 60,000 euros/year 1960 -1.68 -1.43 -0.95
## 1254 Under 10,000 euros/year 1964 0.67 -1.07 -1.88
## 1255 Under 10,000 euros/year 1967 -2.32 -0.96 0.86
## 1256 40,001 - 50,000 euros/year 1960 1.13 0.63 0.48
## 1257 70,001 - 80,000 euros/year 1962 1.00 -0.71 0.26
## 1258 30,001 - 40,000 euros/year 1994 -1.25 0.92 2.27
## 1259 10,000 - 20,000 euros/year 1953 -0.52 -0.35 -0.35
## 1260 60,001 - 70,000 euros/year 1972 0.54 1.01 -1.12
## 1261 30,001 - 40,000 euros/year 1955 0.47 0.68 -0.54
## 1262 20,001 - 30,000 euros/year 1990 0.89 -0.53 -0.02
## 1263 10,000 - 20,000 euros/year 1958 -0.43 0.60 -1.35
## 1264 70,001 - 80,000 euros/year 1989 -1.94 0.17 0.90
## 1265 80,001 - 90,000 euros/year 1982 0.56 -0.03 1.92
## 1266 50,001 - 60,000 euros/year 1974 0.29 -1.03 1.05
## 1267 60,001 - 70,000 euros/year 1974 1.28 0.62 0.01
## 1268 Over 90,000 euros/year 1968 -0.99 0.96 -1.35
## 1269 Under 10,000 euros/year 1990 1.07 -0.83 1.31
## 1270 10,000 - 20,000 euros/year 1958 0.18 -1.11 -2.37
## 1271 40,001 - 50,000 euros/year 1946 0.16 -0.74 -0.15
## 1272 70,001 - 80,000 euros/year 1954 1.19 0.86 -0.47
## 1273 80,001 - 90,000 euros/year 1966 0.97 0.31 0.16
## 1274 10,000 - 20,000 euros/year 1966 0.50 1.04 1.08
## 1275 10,000 - 20,000 euros/year 1954 0.71 0.98 1.10
## 1276 80,001 - 90,000 euros/year 1971 0.42 -0.66 0.61
## 1277 Don't want to say 1951 0.63 -0.32 -0.82
## 1278 Don't want to say 1966 -1.02 1.27 0.38
## 1279 60,001 - 70,000 euros/year 1981 0.02 -0.80 0.92
## 1280 10,000 - 20,000 euros/year 1996 0.67 2.66 0.44
## 1281 50,001 - 60,000 euros/year 1954 -0.20 1.25 0.64
## 1282 50,001 - 60,000 euros/year 1963 0.66 -0.97 1.48
## 1283 Under 10,000 euros/year 1966 0.43 2.03 1.45
## 1284 Over 90,000 euros/year 1965 -0.09 -0.45 -1.00
## 1285 80,001 - 90,000 euros/year 1951 -0.72 1.05 1.59
## 1286 60,001 - 70,000 euros/year 1987 0.95 -1.64 -1.27
## 1287 Over 90,000 euros/year 1975 0.51 1.31 0.24
## 1288 60,001 - 70,000 euros/year 1962 0.50 1.46 -0.31
## 1289 Over 90,000 euros/year 1968 -2.48 -0.58 0.70
## 1290 70,001 - 80,000 euros/year 1985 0.96 1.55 0.09
## 1291 40,001 - 50,000 euros/year 1992 1.25 -0.15 0.26
## 1292 Over 90,000 euros/year 1977 -0.51 -0.58 0.63
## 1293 50,001 - 60,000 euros/year 1981 0.86 0.91 -1.66
## 1294 Don't want to say 1971 0.72 -1.80 0.25
## 1295 Don't want to say 1984 -0.06 -0.32 -0.70
## 1296 20,001 - 30,000 euros/year 1950 -0.68 0.62 -0.43
## 1297 20,001 - 30,000 euros/year 1945 0.98 -1.86 0.39
## 1298 40,001 - 50,000 euros/year 1986 0.68 0.35 0.60
## 1299 30,001 - 40,000 euros/year 1977 0.70 -0.43 -0.22
## 1300 40,001 - 50,000 euros/year 1942 0.80 -0.49 -0.32
## 1301 60,001 - 70,000 euros/year 1947 -0.13 0.51 -0.53
## 1302 30,001 - 40,000 euros/year 1985 0.79 -0.90 0.26
## 1303 70,001 - 80,000 euros/year 1963 0.42 -0.06 -0.56
## 1304 50,001 - 60,000 euros/year 1946 0.49 0.96 1.40
## 1305 70,001 - 80,000 euros/year 1989 1.56 -0.12 -0.95
## 1306 60,001 - 70,000 euros/year 1993 0.84 1.74 0.08
## 1307 80,001 - 90,000 euros/year 1964 0.36 0.74 -1.00
## 1308 30,001 - 40,000 euros/year 1955 -1.46 -0.87 0.60
## 1309 Over 90,000 euros/year 1980 0.46 0.14 0.69
## 1310 30,001 - 40,000 euros/year 1941 0.09 -0.65 0.09
## 1311 20,001 - 30,000 euros/year 1958 -3.98 -0.51 -0.25
## 1312 70,001 - 80,000 euros/year 1984 -0.36 -0.36 -0.05
## 1313 50,001 - 60,000 euros/year 1948 0.79 0.41 0.53
## 1314 Don't want to say 1964 0.72 0.58 -0.18
## 1315 50,001 - 60,000 euros/year 1942 0.75 1.19 0.07
## 1316 Over 90,000 euros/year 1981 0.78 0.34 0.88
## 1317 40,001 - 50,000 euros/year 1981 0.80 0.92 1.61
## 1318 30,001 - 40,000 euros/year 1952 -2.30 -0.82 1.54
## 1319 70,001 - 80,000 euros/year 1969 0.88 0.39 -0.10
## 1320 50,001 - 60,000 euros/year 1993 0.79 -0.59 -0.26
## 1321 80,001 - 90,000 euros/year 1979 0.57 -0.90 0.67
## 1322 20,001 - 30,000 euros/year 1990 -1.39 0.40 -0.30
## 1323 40,001 - 50,000 euros/year 1971 -1.18 -1.75 -0.14
## 1324 Under 10,000 euros/year 1993 1.63 0.65 -3.21
## 1325 Don't want to say 1982 1.09 -0.71 1.24
## 1326 50,001 - 60,000 euros/year 1987 -1.02 -0.57 -1.78
## 1327 Don't want to say 1978 0.90 -1.28 -1.35
## 1328 Don't want to say 1985 -1.54 0.24 0.21
## 1329 Don't want to say 1952 -1.06 -1.48 -0.79
## 1330 40,001 - 50,000 euros/year 1971 0.52 -0.74 0.25
## 1331 60,001 - 70,000 euros/year 1953 0.93 -0.59 0.16
## 1332 50,001 - 60,000 euros/year 1990 0.47 -1.09 -0.40
## 1333 30,001 - 40,000 euros/year 1966 -1.45 -0.59 -0.33
## 1334 50,001 - 60,000 euros/year 1964 -0.56 0.43 -1.85
## 1335 30,001 - 40,000 euros/year 1969 -0.21 0.89 -0.05
## 1336 Under 10,000 euros/year 1987 -1.97 0.78 0.04
## 1337 20,001 - 30,000 euros/year 1968 0.43 2.06 0.97
## 1338 Don't want to say 1950 0.64 1.03 1.45
## 1339 70,001 - 80,000 euros/year 1972 -3.78 -1.70 0.47
## 1340 Under 10,000 euros/year 1989 -0.76 1.43 0.43
## 1341 Under 10,000 euros/year 1986 -0.92 -0.56 -2.63
## 1342 80,001 - 90,000 euros/year 1941 0.49 -0.44 -1.24
## 1343 30,001 - 40,000 euros/year 1973 0.71 -0.58 0.94
## 1344 70,001 - 80,000 euros/year 1966 0.10 -1.29 -2.12
## 1345 20,001 - 30,000 euros/year 1995 1.21 0.63 0.60
## 1346 60,001 - 70,000 euros/year 1976 0.83 -1.58 0.22
## 1347 Don't want to say 1984 0.34 -1.65 -0.07
## 1348 Don't want to say 1967 -0.98 1.60 0.15
## 1349 Don't want to say 1991 1.09 -0.47 -0.19
## 1350 Don't want to say 1978 -0.86 -0.65 0.24
## 1351 30,001 - 40,000 euros/year 1994 0.61 0.25 1.00
## 1352 40,001 - 50,000 euros/year 1981 -0.91 1.20 1.83
## 1353 Don't want to say 1957 -0.58 -0.45 0.17
## 1354 Don't want to say 1967 0.80 0.41 0.48
## 1355 Under 10,000 euros/year 1990 0.49 0.62 0.10
## 1356 80,001 - 90,000 euros/year 1975 -0.80 0.07 -2.51
## 1357 Over 90,000 euros/year 1984 0.52 -0.16 1.36
## 1358 40,001 - 50,000 euros/year 1988 0.70 -0.48 -0.50
## 1359 20,001 - 30,000 euros/year 1965 -2.09 -0.21 -0.69
## 1360 Don't want to say 1982 -0.40 -1.53 -0.92
## 1361 60,001 - 70,000 euros/year 1955 0.50 -0.42 -0.23
## 1362 30,001 - 40,000 euros/year 1977 -0.45 0.75 -0.27
## 1363 20,001 - 30,000 euros/year 1974 -0.18 -0.43 -0.08
## 1364 40,001 - 50,000 euros/year 1984 0.71 -0.45 -1.08
## 1365 50,001 - 60,000 euros/year 1962 0.57 -0.81 -0.20
## 1366 Don't want to say 1982 0.76 -2.09 1.53
## 1367 Under 10,000 euros/year 1996 0.68 0.68 -0.69
## 1368 60,001 - 70,000 euros/year 1973 1.10 -0.28 0.66
## 1369 40,001 - 50,000 euros/year 1974 -1.46 0.27 0.72
## 1370 50,001 - 60,000 euros/year 1985 1.12 -1.85 0.16
## 1371 70,001 - 80,000 euros/year 1954 -0.74 -0.13 -1.22
## 1372 Don't want to say 1971 -0.78 1.41 0.47
## 1373 20,001 - 30,000 euros/year 1990 -0.70 -1.05 1.59
## 1374 Don't want to say 1969 0.77 -0.61 0.20
## 1375 40,001 - 50,000 euros/year 1980 0.73 0.60 -0.52
## 1376 20,001 - 30,000 euros/year 1978 -1.98 0.70 -0.70
## 1377 50,001 - 60,000 euros/year 1978 -0.82 -0.67 0.12
## 1378 60,001 - 70,000 euros/year 1952 -0.02 -1.54 -0.58
## 1379 50,001 - 60,000 euros/year 1958 0.29 0.10 0.93
## 1380 10,000 - 20,000 euros/year 1993 0.92 0.00 1.47
## 1381 40,001 - 50,000 euros/year 1993 -2.85 1.93 -1.38
## 1382 Under 10,000 euros/year 1996 -1.66 -1.16 -0.66
## 1383 50,001 - 60,000 euros/year 1988 -2.32 1.25 2.68
## 1384 80,001 - 90,000 euros/year 1976 -1.91 -1.54 -1.96
## 1385 10,000 - 20,000 euros/year 1974 0.46 1.91 1.21
## 1386 Don't want to say 1962 0.29 -0.59 -0.82
## 1387 10,000 - 20,000 euros/year 1954 -1.75 -1.11 -1.27
## 1388 Don't want to say 1960 -0.79 0.51 -0.63
## 1389 50,001 - 60,000 euros/year 1972 0.64 1.63 -0.40
## 1390 70,001 - 80,000 euros/year 1969 -0.98 -0.74 0.07
## 1391 30,001 - 40,000 euros/year 1978 -0.82 -1.65 0.39
## 1392 Under 10,000 euros/year 1989 -0.95 -1.27 -0.09
## 1393 50,001 - 60,000 euros/year 1974 -0.35 0.71 0.33
## 1394 40,001 - 50,000 euros/year 1964 -0.72 -0.61 0.51
## 1395 Don't want to say 1986 -0.63 -0.67 -3.51
## 1396 40,001 - 50,000 euros/year 1962 0.02 0.06 -1.11
## 1397 Don't want to say 1980 -1.02 -0.49 -0.22
## 1398 30,001 - 40,000 euros/year 1964 -1.06 0.60 -0.25
## 1399 Under 10,000 euros/year 1981 -1.05 -1.33 -1.20
## 1400 Over 90,000 euros/year 1978 0.55 0.47 -0.16
## 1401 Under 10,000 euros/year 1965 -0.59 0.44 -0.94
## 1402 10,000 - 20,000 euros/year 1952 0.15 -1.29 -0.78
## 1403 10,000 - 20,000 euros/year 1980 0.04 -0.19 -2.31
## 1404 10,000 - 20,000 euros/year 1955 -0.90 1.21 0.48
## 1405 Over 90,000 euros/year 1964 -1.13 -0.56 0.54
## 1406 50,001 - 60,000 euros/year 1976 0.71 0.66 -0.62
## 1407 30,001 - 40,000 euros/year 1979 0.27 1.07 0.57
## 1408 10,000 - 20,000 euros/year 1956 -2.47 1.48 0.80
## 1409 20,001 - 30,000 euros/year 1972 -0.68 0.63 -0.64
## 1410 30,001 - 40,000 euros/year 1986 -0.64 0.54 -0.49
## 1411 70,001 - 80,000 euros/year 1974 0.82 -1.61 -0.12
## 1412 60,001 - 70,000 euros/year 1991 0.05 -0.72 0.32
## 1413 80,001 - 90,000 euros/year 1957 0.13 -0.81 -0.12
## 1414 Don't want to say 2002 -0.30 0.29 1.00
## 1415 30,001 - 40,000 euros/year 1971 0.98 0.31 -0.13
## 1416 50,001 - 60,000 euros/year 1973 -1.87 -0.39 -0.16
## 1417 80,001 - 90,000 euros/year 1974 1.17 0.19 -1.66
## 1418 40,001 - 50,000 euros/year 1986 1.02 -0.87 1.70
## 1419 60,001 - 70,000 euros/year 1956 -0.19 -0.31 -1.12
## 1420 70,001 - 80,000 euros/year 1959 0.39 -0.90 0.56
## 1421 Don't want to say 1971 -1.23 -0.54 0.80
## 1422 10,000 - 20,000 euros/year 1963 0.56 -1.28 -1.23
## 1423 Over 90,000 euros/year 1965 0.74 1.21 1.48
## 1424 40,001 - 50,000 euros/year 1954 0.69 0.56 -0.61
## 1425 Don't want to say 2001 -1.02 -0.92 1.87
## 1426 30,001 - 40,000 euros/year 1982 1.01 -0.24 0.15
## 1427 30,001 - 40,000 euros/year 1987 -0.90 1.38 0.90
## 1428 40,001 - 50,000 euros/year 1959 0.50 0.01 1.29
## 1429 30,001 - 40,000 euros/year 1996 0.76 -0.82 0.93
## 1430 10,000 - 20,000 euros/year 1998 -1.79 -0.48 -0.56
## 1431 40,001 - 50,000 euros/year 1989 -1.09 -0.56 0.02
## 1432 60,001 - 70,000 euros/year 1975 -0.34 -1.27 -1.37
## 1433 Under 10,000 euros/year 1995 0.43 -0.55 0.42
## 1434 30,001 - 40,000 euros/year 1995 -0.24 -0.13 -1.31
## 1435 Over 90,000 euros/year 1961 0.37 0.62 -0.19
## 1436 10,000 - 20,000 euros/year 1965 -2.62 -1.65 1.52
## 1437 70,001 - 80,000 euros/year 1974 -1.86 -0.59 0.43
## 1438 10,000 - 20,000 euros/year 1960 0.22 0.59 -0.31
## 1439 20,001 - 30,000 euros/year 1987 -0.43 -1.62 -0.47
## 1440 30,001 - 40,000 euros/year 1990 -0.24 -0.35 -0.52
## 1441 70,001 - 80,000 euros/year 1993 -0.53 0.84 -0.27
## 1442 10,000 - 20,000 euros/year 1996 0.22 -0.50 0.89
## 1443 70,001 - 80,000 euros/year 1973 -0.22 0.50 -0.19
## 1444 50,001 - 60,000 euros/year 1969 0.55 0.18 -2.54
## 1445 40,001 - 50,000 euros/year 1978 0.97 -0.95 1.23
## 1446 20,001 - 30,000 euros/year 1995 -0.28 0.44 -0.18
## 1447 10,000 - 20,000 euros/year 1985 -1.97 -2.25 3.14
## 1448 Over 90,000 euros/year 1991 -0.34 0.64 0.58
## 1449 40,001 - 50,000 euros/year 1949 -0.84 0.74 -1.12
## 1450 20,001 - 30,000 euros/year 1962 -0.33 -0.50 -0.99
## 1451 50,001 - 60,000 euros/year 1973 0.19 1.38 0.16
## 1452 40,001 - 50,000 euros/year 1986 -0.28 0.80 -0.01
## 1453 30,001 - 40,000 euros/year 1965 -0.43 -0.28 0.78
## 1454 Don't want to say 1979 1.55 -0.80 0.49
## 1455 Under 10,000 euros/year 1984 0.93 -1.61 0.20
## 1456 30,001 - 40,000 euros/year 1983 -0.87 0.45 -0.03
## 1457 80,001 - 90,000 euros/year 2001 0.63 0.37 -0.08
## 1458 50,001 - 60,000 euros/year 1990 -0.73 -0.77 0.86
## 1459 10,000 - 20,000 euros/year 1954 0.61 0.42 -1.26
## 1460 20,001 - 30,000 euros/year 1957 0.81 -0.10 2.21
## 1461 30,001 - 40,000 euros/year 1990 -1.21 -0.99 -1.50
## 1462 10,000 - 20,000 euros/year 1988 -1.28 -1.77 1.18
## 1463 70,001 - 80,000 euros/year 1979 0.63 0.99 1.53
## 1464 70,001 - 80,000 euros/year 1964 -0.41 0.84 -0.38
## 1465 30,001 - 40,000 euros/year 1970 0.62 0.26 0.79
## 1466 80,001 - 90,000 euros/year 1986 0.85 0.05 1.55
## 1467 Over 90,000 euros/year 1957 0.31 -1.25 -1.38
## 1468 Don't want to say 1996 -1.45 -0.06 -1.70
## 1469 Under 10,000 euros/year 1994 -0.76 0.48 0.28
## 1470 40,001 - 50,000 euros/year 1956 0.81 0.62 0.27
## 1471 10,000 - 20,000 euros/year 1958 0.14 1.91 -0.87
## 1472 Over 90,000 euros/year 2000 0.73 0.46 0.22
## 1473 Over 90,000 euros/year 1955 0.43 1.39 -0.08
## 1474 40,001 - 50,000 euros/year 1969 0.48 -0.11 -1.08
## 1475 30,001 - 40,000 euros/year 1994 0.43 0.75 -0.86
## 1476 10,000 - 20,000 euros/year 1986 1.17 -0.08 -0.18
## 1477 30,001 - 40,000 euros/year 1998 0.38 0.53 -0.37
## 1478 80,001 - 90,000 euros/year 1982 0.94 0.72 -0.89
## 1479 30,001 - 40,000 euros/year 1982 0.63 0.94 1.81
## 1480 40,001 - 50,000 euros/year 1987 -0.90 1.23 0.43
## 1481 40,001 - 50,000 euros/year 1962 0.06 -0.92 0.44
## 1482 80,001 - 90,000 euros/year 1956 0.95 -0.37 -1.00
## 1483 Over 90,000 euros/year 1974 0.97 0.34 -2.22
## 1484 10,000 - 20,000 euros/year 1999 -2.22 2.27 2.24
## 1485 60,001 - 70,000 euros/year 1991 0.45 -0.26 -1.86
## 1486 30,001 - 40,000 euros/year 1988 -1.07 -0.98 -2.21
## 1487 10,000 - 20,000 euros/year 1962 0.44 -1.77 -0.37
## 1488 60,001 - 70,000 euros/year 1983 0.65 0.15 0.32
## 1489 10,000 - 20,000 euros/year 1958 0.53 0.08 0.91
## 1490 Under 10,000 euros/year 1969 0.59 -0.21 -1.54
## 1491 30,001 - 40,000 euros/year 1981 0.67 1.34 0.04
## 1492 Don't want to say 1963 -2.53 0.85 1.77
## 1493 30,001 - 40,000 euros/year 1957 0.44 -0.62 -0.74
## 1494 Under 10,000 euros/year 1971 -1.71 -0.65 0.12
## 1495 30,001 - 40,000 euros/year 1986 0.55 -0.89 1.10
## 1496 Don't want to say 1956 0.43 1.23 -0.03
## 1497 40,001 - 50,000 euros/year 1970 -0.89 -1.40 -1.00
## 1498 30,001 - 40,000 euros/year 1989 0.37 0.37 -0.37
## 1499 10,000 - 20,000 euros/year 1991 0.77 0.36 0.18
## 1500 Over 90,000 euros/year 1988 0.04 -0.41 -0.12
## 1501 Under 10,000 euros/year 1994 -0.68 -0.73 1.07
## 1502 10,000 - 20,000 euros/year 1961 -0.33 0.39 0.67
## 1503 60,001 - 70,000 euros/year 1959 -0.88 1.72 -0.28
## 1504 30,001 - 40,000 euros/year 1974 0.62 -1.95 0.41
## 1505 Don't want to say 2002 0.67 -1.03 1.20
## 1506 20,001 - 30,000 euros/year 1961 0.63 1.62 -0.56
## 1507 Over 90,000 euros/year 1983 0.68 1.18 1.12
## 1508 40,001 - 50,000 euros/year 1976 1.19 -0.50 0.17
## 1509 Under 10,000 euros/year 1966 -1.42 0.85 0.11
## 1510 60,001 - 70,000 euros/year 1974 0.46 0.37 0.10
## 1511 50,001 - 60,000 euros/year 1996 0.61 1.90 1.51
## 1512 60,001 - 70,000 euros/year 1978 0.74 -1.38 -1.93
## 1513 50,001 - 60,000 euros/year 1957 0.53 -0.84 0.44
## 1514 20,001 - 30,000 euros/year 1998 0.64 1.45 0.11
## 1515 40,001 - 50,000 euros/year 1959 0.41 -0.08 -1.43
## 1516 Under 10,000 euros/year 2000 1.22 1.66 -0.11
## 1517 10,000 - 20,000 euros/year 1976 -1.99 -0.53 0.08
## 1518 70,001 - 80,000 euros/year 1975 -0.99 -0.36 -0.20
## 1519 50,001 - 60,000 euros/year 1957 1.04 -0.90 -2.02
## 1520 30,001 - 40,000 euros/year 1976 -1.39 0.50 0.25
## 1521 10,000 - 20,000 euros/year 1988 0.92 -0.32 0.30
## 1522 70,001 - 80,000 euros/year 1959 0.76 0.21 1.07
## 1523 50,001 - 60,000 euros/year 1998 0.67 2.35 1.31
## 1524 70,001 - 80,000 euros/year 1989 0.59 0.98 1.67
## 1525 20,001 - 30,000 euros/year 1983 0.89 -2.07 1.98
## 1526 60,001 - 70,000 euros/year 1956 0.98 -0.75 1.60
## 1527 30,001 - 40,000 euros/year 1999 -0.39 2.74 -0.52
## 1528 20,001 - 30,000 euros/year 1998 1.13 2.19 -0.73
## 1529 10,000 - 20,000 euros/year 1952 -0.13 -0.40 -0.43
## 1530 30,001 - 40,000 euros/year 1974 0.90 0.73 -0.93
## 1531 30,001 - 40,000 euros/year 1970 0.86 -0.24 -2.56
## 1532 Under 10,000 euros/year 1970 0.51 0.67 -0.89
## 1533 Over 90,000 euros/year 1979 0.25 0.77 -0.65
## 1534 50,001 - 60,000 euros/year 1992 0.29 0.48 -0.39
## 1535 60,001 - 70,000 euros/year 1993 -0.22 -0.83 0.06
## 1536 40,001 - 50,000 euros/year 1961 0.25 -0.75 -0.34
## 1537 80,001 - 90,000 euros/year 1981 0.95 0.62 0.10
## 1538 50,001 - 60,000 euros/year 1956 0.63 -0.86 0.25
## 1539 Over 90,000 euros/year 1991 0.94 -0.68 1.52
## 1540 30,001 - 40,000 euros/year 1960 -0.43 -0.60 0.17
## 1541 Over 90,000 euros/year 2002 1.37 -0.11 -0.76
## 1542 70,001 - 80,000 euros/year 1960 0.71 -0.44 -0.25
## 1543 60,001 - 70,000 euros/year 1985 0.64 -0.25 -1.27
## 1544 60,001 - 70,000 euros/year 1957 -0.24 -0.72 0.16
## 1545 30,001 - 40,000 euros/year 1955 0.69 1.62 0.91
## 1546 70,001 - 80,000 euros/year 1960 -0.55 -1.62 1.34
## 1547 80,001 - 90,000 euros/year 1979 -1.23 -0.22 0.33
## 1548 Over 90,000 euros/year 1978 0.56 -1.04 0.87
## 1549 30,001 - 40,000 euros/year 1956 -1.99 0.73 -0.64
## 1550 40,001 - 50,000 euros/year 1955 -0.75 1.51 0.04
## 1551 70,001 - 80,000 euros/year 1979 1.11 -1.46 -1.16
## 1552 60,001 - 70,000 euros/year 1957 -0.14 0.43 -0.45
## 1553 40,001 - 50,000 euros/year 1974 -0.17 -0.60 -0.15
## 1554 30,001 - 40,000 euros/year 1975 -0.82 1.72 -0.61
## 1555 Don't want to say 1990 -0.76 -0.77 0.81
## 1556 Under 10,000 euros/year 1960 0.13 -0.96 1.23
## 1557 Over 90,000 euros/year 2001 -0.67 -1.20 1.59
## 1558 30,001 - 40,000 euros/year 1987 -1.37 1.22 2.02
## 1559 30,001 - 40,000 euros/year 1963 -1.37 0.52 -0.02
## 1560 Don't want to say 2002 0.56 0.24 1.21
## 1561 50,001 - 60,000 euros/year 1974 0.73 1.53 -1.21
## 1562 50,001 - 60,000 euros/year 1975 0.54 -0.19 -1.10
## 1563 10,000 - 20,000 euros/year 2000 1.43 -1.19 -0.50
## 1564 Don't want to say 1999 -2.77 -2.26 2.59
## 1565 Don't want to say 2001 0.93 1.18 0.55
## 1566 70,001 - 80,000 euros/year 1986 -0.80 -0.09 1.78
## 1567 40,001 - 50,000 euros/year 2001 -2.10 1.03 0.50
## 1568 70,001 - 80,000 euros/year 1970 -0.49 0.72 -0.31
## 1569 Under 10,000 euros/year 1997 0.82 0.33 0.17
## 1570 Don't want to say 2001 0.16 1.48 1.78
## 1571 Under 10,000 euros/year 1972 -1.05 0.82 -0.55
## 1572 30,001 - 40,000 euros/year 1989 0.53 -0.60 -0.52
## 1573 20,001 - 30,000 euros/year 1955 -1.00 0.91 -1.04
## 1574 10,000 - 20,000 euros/year 1955 -1.91 0.43 -0.08
## 1575 50,001 - 60,000 euros/year 1995 -0.56 0.32 0.20
## 1576 Under 10,000 euros/year 1991 -0.50 -0.54 0.39
## 1577 70,001 - 80,000 euros/year 1961 0.61 0.18 -0.45
## 1578 Under 10,000 euros/year 1992 1.00 -0.38 -0.68
## 1579 50,001 - 60,000 euros/year 2001 0.15 0.63 -0.55
## 1580 70,001 - 80,000 euros/year 2002 -3.36 -0.30 2.60
## 1581 40,001 - 50,000 euros/year 1979 0.11 1.92 -0.49
## 1582 40,001 - 50,000 euros/year 1956 -0.09 0.00 -1.32
## 1583 Under 10,000 euros/year 1980 -0.45 0.56 0.43
## 1584 60,001 - 70,000 euros/year 1987 0.49 1.45 1.00
## 1585 60,001 - 70,000 euros/year 1958 1.09 -1.44 -0.84
## 1586 20,001 - 30,000 euros/year 1955 -4.37 -0.73 -1.42
## 1587 10,000 - 20,000 euros/year 1987 -0.34 0.62 -0.32
## 1588 10,000 - 20,000 euros/year 1972 -0.40 -1.66 0.29
## 1589 30,001 - 40,000 euros/year 1992 -1.88 -0.77 0.86
## 1590 10,000 - 20,000 euros/year 1992 1.15 1.18 -1.73
## 1591 40,001 - 50,000 euros/year 1986 -1.85 -0.98 1.20
## 1592 50,001 - 60,000 euros/year 1990 0.69 0.44 -0.02
## 1593 20,001 - 30,000 euros/year 1967 0.46 1.97 1.26
## 1594 10,000 - 20,000 euros/year 1997 0.31 0.46 -0.22
## 1595 Don't want to say 1989 1.11 -0.51 1.32
## 1596 30,001 - 40,000 euros/year 1991 1.12 0.92 -1.31
## 1597 60,001 - 70,000 euros/year 1987 0.92 -0.49 0.14
## 1598 Over 90,000 euros/year 1984 1.08 0.68 -0.63
## 1599 60,001 - 70,000 euros/year 1978 0.89 -1.78 -0.13
## 1600 30,001 - 40,000 euros/year 1986 0.84 0.01 -1.66
## 1601 Don't want to say 2000 0.83 2.23 0.83
## 1602 10,000 - 20,000 euros/year 1997 0.36 1.44 0.96
## 1603 Don't want to say 1983 1.14 -0.01 -1.45
## 1604 Under 10,000 euros/year 1997 -0.12 -0.35 -0.06
## 1605 Under 10,000 euros/year 1998 0.53 -0.94 0.75
## 1606 10,000 - 20,000 euros/year 1987 1.00 -0.70 -0.91
## 1607 10,000 - 20,000 euros/year 1991 1.16 -0.04 -1.38
## 1608 30,001 - 40,000 euros/year 1988 1.10 0.31 1.18
## 1609 Don't want to say 1985 0.07 0.29 0.33
## 1610 Under 10,000 euros/year 1993 0.90 -0.89 1.11
## 1611 10,000 - 20,000 euros/year 1998 -1.44 0.74 -0.90
## 1612 Under 10,000 euros/year 2001 1.25 -0.63 1.27
## 1613 60,001 - 70,000 euros/year 1963 0.26 1.35 0.86
## 1614 60,001 - 70,000 euros/year 1973 0.23 -0.11 1.73
## 1615 50,001 - 60,000 euros/year 1988 0.14 0.90 -0.73
## 1616 Under 10,000 euros/year 1986 0.95 -0.59 0.66
## 1617 50,001 - 60,000 euros/year 2002 0.60 -0.92 0.88
## 1618 Don't want to say 2000 0.98 1.34 1.62
## 1619 30,001 - 40,000 euros/year 1993 0.71 0.14 1.20
## 1620 Don't want to say 1995 0.82 -1.58 0.73
## 1621 10,000 - 20,000 euros/year 1991 -1.90 0.42 0.28
## 1622 10,000 - 20,000 euros/year 1994 0.65 0.01 1.62
## 1623 Under 10,000 euros/year 1992 0.46 2.18 0.82
## 1624 40,001 - 50,000 euros/year 2001 0.21 2.19 2.02
## 1625 Under 10,000 euros/year 2001 -3.99 2.72 -0.57
## 1626 30,001 - 40,000 euros/year 1993 0.91 0.44 0.02
## 1627 30,001 - 40,000 euros/year 1977 1.24 -0.35 -0.44
## 1628 Don't want to say 1991 0.99 0.38 0.19
## 1629 30,001 - 40,000 euros/year 1986 -2.44 -1.64 0.85
## 1630 10,000 - 20,000 euros/year 1996 0.06 -0.87 0.11
## 1631 Don't want to say 1993 1.05 0.48 0.24
## 1632 20,001 - 30,000 euros/year 1993 0.41 1.43 -1.37
## 1633 20,001 - 30,000 euros/year 1996 0.32 -0.53 0.31
## 1634 Under 10,000 euros/year 1999 1.30 -0.20 0.00
## 1635 Don't want to say 1983 1.22 -1.41 -0.38
## 1636 Don't want to say 2001 1.04 1.75 -0.33
## 1637 80,001 - 90,000 euros/year 1964 -0.64 0.06 1.51
## 1638 10,000 - 20,000 euros/year 1998 0.70 1.18 0.44
## 1639 20,001 - 30,000 euros/year 1994 -0.85 -0.29 -0.30
## 1640 Under 10,000 euros/year 1990 1.13 -0.17 -1.86
## 1641 Under 10,000 euros/year 1996 0.51 0.02 0.92
## 1642 20,001 - 30,000 euros/year 1987 0.22 -1.80 0.61
## 1643 40,001 - 50,000 euros/year 1992 0.76 1.16 1.15
## 1644 10,000 - 20,000 euros/year 1997 -0.28 1.45 1.11
## 1645 80,001 - 90,000 euros/year 1989 0.17 -0.41 0.38
## 1646 60,001 - 70,000 euros/year 1975 -0.43 1.15 1.70
## 1647 Under 10,000 euros/year 1994 0.43 2.03 1.45
## 1648 Don't want to say 2001 -2.01 0.44 1.55
## 1649 Don't want to say 2002 0.48 0.61 0.11
## 1650 10,000 - 20,000 euros/year 1971 -0.97 -0.38 -0.01
## 1651 40,001 - 50,000 euros/year 1991 0.61 -0.51 -0.50
## 1652 20,001 - 30,000 euros/year 1980 0.54 -1.05 0.77
## 1653 Over 90,000 euros/year 1985 0.79 -1.99 1.20
## 1654 Under 10,000 euros/year 1997 1.29 0.75 -0.96
## 1655 Don't want to say 1993 0.45 2.07 1.07
## 1656 50,001 - 60,000 euros/year 1989 0.93 1.12 1.73
## 1657 10,000 - 20,000 euros/year 1999 -1.17 -0.50 0.15
## 1658 10,000 - 20,000 euros/year 2002 -0.41 1.34 1.04
## 1659 40,001 - 50,000 euros/year 2001 0.52 1.52 0.51
## 1660 Don't want to say 1997 -0.14 0.94 -1.16
## 1661 10,000 - 20,000 euros/year 1990 0.49 -0.54 0.86
## 1662 Under 10,000 euros/year 1999 0.12 -1.26 0.33
## 1663 10,000 - 20,000 euros/year 1993 0.78 -2.01 1.57
## 1664 50,001 - 60,000 euros/year 1966 0.94 0.22 0.94
## 1665 10,000 - 20,000 euros/year 1992 0.86 0.11 1.21
## 1666 Under 10,000 euros/year 2001 1.20 -0.17 -0.38
## 1667 30,001 - 40,000 euros/year 1995 1.08 -0.19 -0.83
## 1668 10,000 - 20,000 euros/year 1995 1.19 0.62 0.05
## 1669 Under 10,000 euros/year 1991 -2.16 1.25 -1.91
## 1670 20,001 - 30,000 euros/year 1993 0.83 0.48 0.45
## 1671 Under 10,000 euros/year 1997 0.42 0.44 -0.10
## 1672 40,001 - 50,000 euros/year 1993 1.30 0.62 -0.36
## 1673 10,000 - 20,000 euros/year 1992 -0.58 -0.24 -0.97
## 1674 Don't want to say 1989 0.16 -0.33 -1.16
## 1675 Under 10,000 euros/year 1997 0.87 -0.48 -0.23
## 1676 Don't want to say 2000 -0.69 1.47 0.87
## 1677 60,001 - 70,000 euros/year 2002 0.51 2.62 -0.49
## 1678 Don't want to say 1989 0.76 -0.70 0.56
## 1679 10,000 - 20,000 euros/year 1986 -1.33 -0.95 0.88
## 1680 Over 90,000 euros/year 1981 0.64 1.03 1.45
## 1681 Don't want to say 1990 -0.33 -0.03 -1.23
## 1682 50,001 - 60,000 euros/year 1951 -0.17 -2.14 2.10
## 1683 60,001 - 70,000 euros/year 1989 1.09 -0.22 -0.97
## 1684 30,001 - 40,000 euros/year 1987 0.37 1.62 0.72
## 1685 40,001 - 50,000 euros/year 2002 0.65 -0.60 0.12
## 1686 Under 10,000 euros/year 1994 0.75 1.37 -0.32
## 1687 Don't want to say 2001 -2.74 1.88 2.99
## 1688 Under 10,000 euros/year 1996 1.07 -0.63 0.63
## 1689 Under 10,000 euros/year 1998 0.43 2.03 1.45
## 1690 40,001 - 50,000 euros/year 1956 -0.74 0.39 0.17
## 1691 80,001 - 90,000 euros/year 1991 0.75 -0.78 1.02
## 1692 10,000 - 20,000 euros/year 1992 -1.11 -1.00 1.23
## 1693 80,001 - 90,000 euros/year 1978 0.56 -0.43 -0.83
## 1694 20,001 - 30,000 euros/year 1992 1.19 0.96 -0.81
## 1695 20,001 - 30,000 euros/year 1960 0.53 0.03 0.85
## 1696 Under 10,000 euros/year 2000 0.09 0.13 1.37
## 1697 Over 90,000 euros/year 1976 0.48 1.16 1.32
## 1698 20,001 - 30,000 euros/year 1965 0.35 1.80 -1.13
## 1699 60,001 - 70,000 euros/year 1995 0.46 1.91 1.21
## 1700 Over 90,000 euros/year 1988 0.17 0.52 1.17
## 1701 50,001 - 60,000 euros/year 1984 -0.55 0.15 1.13
## 1702 Under 10,000 euros/year 1988 -2.42 -0.81 0.89
## 1703 Over 90,000 euros/year 1983 0.97 -0.11 -1.84
## 1704 10,000 - 20,000 euros/year 2002 -0.76 1.32 0.28
## 1705 10,000 - 20,000 euros/year 1996 0.58 -0.61 0.60
## 1706 20,001 - 30,000 euros/year 1993 -0.85 -0.13 -1.34
## 1707 40,001 - 50,000 euros/year 1974 -0.76 1.32 0.28
## 1708 70,001 - 80,000 euros/year 2000 0.52 0.05 0.91
## 1709 10,000 - 20,000 euros/year 1955 -0.46 -0.37 -0.21
## 1710 20,001 - 30,000 euros/year 1955 0.60 0.36 -1.31
## 1711 Don't want to say 1998 -1.21 0.58 -0.16
## 1712 20,001 - 30,000 euros/year 1987 0.80 -0.23 -0.36
## 1713 10,000 - 20,000 euros/year 1958 -1.06 1.19 0.63
## 1714 Over 90,000 euros/year 1955 -0.61 -0.43 0.13
## 1715 80,001 - 90,000 euros/year 1990 0.78 -0.62 1.01
## 1716 10,000 - 20,000 euros/year 1996 -1.30 2.20 -1.55
## 1717 10,000 - 20,000 euros/year 1971 -1.41 -1.30 -1.94
## 1718 60,001 - 70,000 euros/year 1994 0.41 0.92 -1.67
## 1719 50,001 - 60,000 euros/year 1958 -0.85 -0.46 -0.46
## 1720 Don't want to say 1989 -0.72 1.52 -0.21
## 1721 Over 90,000 euros/year 1979 0.44 0.71 -0.95
## 1722 Under 10,000 euros/year 1982 -1.49 -0.54 0.52
## 1723 10,000 - 20,000 euros/year 1983 0.95 -0.77 0.37
## 1724 10,000 - 20,000 euros/year 1989 0.08 -1.43 -0.06
## 1725 80,001 - 90,000 euros/year 1983 -0.65 0.91 -0.73
## 1726 60,001 - 70,000 euros/year 1975 -0.16 1.23 0.44
## 1727 Under 10,000 euros/year 1997 -5.26 -2.38 2.05
## 1728 Under 10,000 euros/year 1985 0.56 -0.69 0.55
## 1729 40,001 - 50,000 euros/year 1988 0.33 1.11 -1.84
## 1730 60,001 - 70,000 euros/year 1992 1.09 -0.56 0.04
## 1731 10,000 - 20,000 euros/year 1996 0.76 0.33 0.44
## 1732 50,001 - 60,000 euros/year 1987 -0.35 0.78 -0.43
## 1733 Over 90,000 euros/year 1966 0.66 0.50 -0.03
## 1734 30,001 - 40,000 euros/year 1995 1.14 -0.84 -1.65
## 1735 20,001 - 30,000 euros/year 1974 -0.61 0.58 -0.44
## 1736 50,001 - 60,000 euros/year 1981 -1.43 0.22 0.82
## 1737 70,001 - 80,000 euros/year 1956 -0.96 -1.85 0.12
## 1738 50,001 - 60,000 euros/year 1976 0.53 -0.88 0.74
## 1739 10,000 - 20,000 euros/year 1989 1.08 -0.60 -0.51
## 1740 80,001 - 90,000 euros/year 1985 0.85 -0.17 -1.18
## 1741 Under 10,000 euros/year 1990 -0.77 1.35 0.34
## 1742 20,001 - 30,000 euros/year 1992 1.40 -0.35 -0.64
## 1743 Under 10,000 euros/year 1989 0.78 -0.66 -0.51
## 1744 Don't want to say 1985 0.65 1.43 0.22
## 1745 Under 10,000 euros/year 2002 0.91 1.54 0.29
## 1746 Over 90,000 euros/year 1990 1.00 -0.59 0.66
## 1747 10,000 - 20,000 euros/year 1999 1.05 0.34 1.01
## 1748 50,001 - 60,000 euros/year 1986 0.73 -1.00 1.53
## 1749 Under 10,000 euros/year 1999 0.86 0.18 1.38
## 1750 20,001 - 30,000 euros/year 1992 -0.24 0.47 1.26
## 1751 10,000 - 20,000 euros/year 1999 -2.01 2.00 -2.33
## 1752 80,001 - 90,000 euros/year 1988 -0.77 0.46 -0.49
## 1753 30,001 - 40,000 euros/year 1999 0.69 1.49 0.14
## 1754 50,001 - 60,000 euros/year 1973 -2.74 -0.57 1.81
## 1755 30,001 - 40,000 euros/year 1993 -0.45 -0.31 0.13
## 1756 Don't want to say 2002 -0.49 1.90 -1.68
## 1757 Under 10,000 euros/year 1996 0.81 1.48 0.10
## 1758 Over 90,000 euros/year 1975 -0.16 -2.01 0.85
## 1759 Under 10,000 euros/year 2002 0.89 1.75 -0.30
## 1760 Under 10,000 euros/year 1993 1.06 2.44 0.95
## 1761 30,001 - 40,000 euros/year 1976 0.50 0.91 -0.34
## 1762 20,001 - 30,000 euros/year 1991 1.06 0.97 -1.59
## 1763 Don't want to say 1979 0.60 -1.37 -1.65
## 1764 50,001 - 60,000 euros/year 1959 0.44 0.57 -0.19
## 1765 10,000 - 20,000 euros/year 1999 0.98 0.46 -0.46
## 1766 30,001 - 40,000 euros/year 1998 -2.86 1.38 -0.45
## 1767 70,001 - 80,000 euros/year 1979 -0.07 0.28 0.76
## 1768 30,001 - 40,000 euros/year 1989 0.62 -0.30 -0.12
## 1769 20,001 - 30,000 euros/year 1986 -0.68 0.04 1.05
## 1770 60,001 - 70,000 euros/year 1965 0.22 0.10 -1.88
## 1771 50,001 - 60,000 euros/year 1989 0.14 1.76 -0.14
## 1772 Under 10,000 euros/year 1999 0.67 -0.20 -1.13
## 1773 20,001 - 30,000 euros/year 1974 0.78 0.36 0.84
## 1774 Under 10,000 euros/year 1998 1.06 -0.57 0.46
## 1775 Don't want to say 2001 0.68 0.06 1.58
## 1776 30,001 - 40,000 euros/year 2001 -1.57 1.42 0.39
## 1777 Don't want to say 1977 0.44 0.30 0.58
## 1778 40,001 - 50,000 euros/year 1988 -1.76 1.27 1.67
## 1779 10,000 - 20,000 euros/year 1994 -0.88 1.95 -1.06
## 1780 10,000 - 20,000 euros/year 1999 0.02 0.74 0.58
## 1781 Don't want to say 1991 1.18 -0.56 0.12
## 1782 30,001 - 40,000 euros/year 1995 0.91 -0.96 1.62
## 1783 Over 90,000 euros/year 1980 -0.05 0.10 1.67
## 1784 Don't want to say 2000 0.86 1.44 0.42
## 1785 Under 10,000 euros/year 2000 -0.22 -0.32 -0.76
## 1786 30,001 - 40,000 euros/year 1988 0.47 0.90 1.41
## 1787 80,001 - 90,000 euros/year 1990 1.26 0.80 -0.57
## 1788 Under 10,000 euros/year 1999 0.95 -0.59 -0.14
## 1789 Don't want to say 2002 0.43 2.03 1.45
## 1790 Don't want to say 1999 0.86 1.37 0.60
## 1791 Under 10,000 euros/year 2001 -1.19 -0.26 -0.81
## 1792 Don't want to say 1997 1.27 3.22 -0.11
## 1793 80,001 - 90,000 euros/year 1974 0.82 0.73 0.05
## 1794 60,001 - 70,000 euros/year 1986 0.43 0.62 -0.47
## 1795 70,001 - 80,000 euros/year 1987 0.95 1.09 -1.18
## 1796 Under 10,000 euros/year 1994 -0.26 0.58 0.72
## 1797 Don't want to say 1997 -0.74 1.46 1.29
## 1798 30,001 - 40,000 euros/year 1990 -1.66 0.75 0.57
## 1799 60,001 - 70,000 euros/year 1990 0.97 0.54 0.71
## 1800 10,000 - 20,000 euros/year 1998 0.67 2.62 -0.62
## 1801 Don't want to say 2001 0.81 1.26 1.27
## 1802 Don't want to say 1981 0.57 -0.42 -0.79
## 1803 70,001 - 80,000 euros/year 1979 1.06 -1.49 -0.23
## 1804 20,001 - 30,000 euros/year 1955 0.23 -0.82 1.20
## 1805 Don't want to say 1997 -0.66 0.52 1.16
## 1806 Under 10,000 euros/year 2002 -2.04 0.05 1.92
## 1807 Under 10,000 euros/year 1991 0.31 -0.22 -1.35
## 1808 60,001 - 70,000 euros/year 1992 1.43 -0.30 -0.71
## 1809 10,000 - 20,000 euros/year 1962 0.78 0.64 0.68
## 1810 Under 10,000 euros/year 1998 -0.58 1.86 -1.80
## 1811 20,001 - 30,000 euros/year 1998 1.10 0.68 -0.65
## 1812 Don't want to say 1984 0.96 0.74 0.21
## 1813 70,001 - 80,000 euros/year 1990 0.62 1.31 0.82
## 1814 70,001 - 80,000 euros/year 1976 0.85 -0.78 0.11
## 1815 20,001 - 30,000 euros/year 1964 -1.17 1.48 -0.20
## 1816 30,001 - 40,000 euros/year 1985 0.75 -1.70 1.00
## 1817 Over 90,000 euros/year 1975 0.63 -1.75 0.30
## 1818 Don't want to say 2001 -0.45 0.73 -0.39
## 1819 20,001 - 30,000 euros/year 1999 0.41 1.42 0.63
## 1820 70,001 - 80,000 euros/year 1991 0.39 -0.11 -0.52
## 1821 Under 10,000 euros/year 1990 0.13 1.18 1.12
## 1822 80,001 - 90,000 euros/year 1993 0.64 1.51 1.53
## 1823 50,001 - 60,000 euros/year 1995 0.91 0.61 0.07
## 1824 Over 90,000 euros/year 1958 1.01 -0.88 1.34
## 1825 40,001 - 50,000 euros/year 1972 0.27 -1.79 -0.04
## 1826 10,000 - 20,000 euros/year 1995 0.47 1.18 1.05
## 1827 50,001 - 60,000 euros/year 1965 -0.27 1.33 0.01
## 1828 20,001 - 30,000 euros/year 1989 0.68 -0.52 -0.79
## 1829 30,001 - 40,000 euros/year 1989 0.70 0.16 1.42
## 1830 10,000 - 20,000 euros/year 1995 -0.14 0.70 0.15
## 1831 40,001 - 50,000 euros/year 1987 -1.53 1.34 1.55
## 1832 50,001 - 60,000 euros/year 2002 1.20 -0.45 0.19
## 1833 Under 10,000 euros/year 1994 0.71 1.48 0.28
## 1834 Don't want to say 1989 0.13 0.36 -0.17
## 1835 Under 10,000 euros/year 1996 0.24 0.04 1.44
## 1836 30,001 - 40,000 euros/year 1957 -0.29 1.39 0.25
## 1837 Don't want to say 1978 0.16 -0.93 -3.03
## 1838 20,001 - 30,000 euros/year 1998 0.66 1.10 0.49
## 1839 Under 10,000 euros/year 1995 0.86 -1.04 1.90
## 1840 Under 10,000 euros/year 1994 -1.26 -1.02 2.01
## 1841 30,001 - 40,000 euros/year 1995 -0.23 0.94 0.04
## 1842 80,001 - 90,000 euros/year 1991 0.85 -1.78 0.64
## 1843 Under 10,000 euros/year 2001 0.59 -0.78 -0.40
## 1844 60,001 - 70,000 euros/year 1977 0.56 0.27 0.45
## 1845 Over 90,000 euros/year 1983 0.76 -0.79 0.85
## 1846 Under 10,000 euros/year 1996 0.76 -0.88 0.59
## 1847 Don't want to say 2002 -0.87 0.47 0.62
## 1848 Over 90,000 euros/year 1979 1.01 -0.29 -1.66
## 1849 80,001 - 90,000 euros/year 1976 -0.07 -1.42 -0.02
## 1850 40,001 - 50,000 euros/year 1984 -0.80 -0.60 -0.21
## 1851 80,001 - 90,000 euros/year 2000 1.17 -0.44 0.29
## 1852 Don't want to say 1991 0.37 -0.26 -1.09
## 1853 10,000 - 20,000 euros/year 1995 -0.71 -0.55 0.60
## 1854 10,000 - 20,000 euros/year 1964 -1.06 0.72 -1.96
## 1855 Over 90,000 euros/year 1988 -0.16 1.77 0.07
## 1856 Under 10,000 euros/year 2001 0.12 2.04 -1.16
## 1857 Under 10,000 euros/year 1999 -1.09 0.72 0.76
## 1858 Under 10,000 euros/year 2002 -0.93 0.37 0.44
## 1859 20,001 - 30,000 euros/year 1995 0.74 -0.79 0.63
## 1860 30,001 - 40,000 euros/year 1995 -2.08 2.89 -0.78
## 1861 10,000 - 20,000 euros/year 1981 0.89 1.76 0.07
## 1862 10,000 - 20,000 euros/year 1987 0.68 -1.03 1.70
## 1863 30,001 - 40,000 euros/year 1988 1.07 -1.39 -0.05
## 1864 60,001 - 70,000 euros/year 1980 0.55 -0.59 0.63
## 1865 10,000 - 20,000 euros/year 1997 1.23 -0.15 -1.05
## 1866 20,001 - 30,000 euros/year 1993 0.99 -1.41 0.06
## 1867 10,000 - 20,000 euros/year 1997 0.91 0.36 1.44
## 1868 Under 10,000 euros/year 1996 1.31 -0.36 0.36
## 1869 30,001 - 40,000 euros/year 1992 -2.96 -0.18 1.84
## 1870 Under 10,000 euros/year 1995 1.14 0.93 -0.96
## 1871 30,001 - 40,000 euros/year 1996 0.55 2.11 1.29
## 1872 10,000 - 20,000 euros/year 1989 0.03 0.75 -1.13
## 1873 Don't want to say 1988 1.21 -0.80 0.17
## 1874 Under 10,000 euros/year 2000 0.91 1.85 0.12
## 1875 Over 90,000 euros/year 1974 0.46 -0.26 -1.32
## 1876 Don't want to say 1998 -0.40 0.27 0.32
## 1877 10,000 - 20,000 euros/year 1997 -2.74 2.98 -0.97
## 1878 50,001 - 60,000 euros/year 1995 0.62 0.27 -0.32
## 1879 50,001 - 60,000 euros/year 1963 -0.64 0.65 -0.26
## 1880 70,001 - 80,000 euros/year 1972 0.71 1.45 -0.19
## 1881 Don't want to say 1966 -1.08 -0.57 -0.31
## 1882 70,001 - 80,000 euros/year 1961 -0.85 1.31 0.20
## 1883 80,001 - 90,000 euros/year 1974 0.95 -0.46 -0.26
## 1884 Don't want to say 2002 0.09 0.26 1.38
## 1885 Under 10,000 euros/year 2000 -1.40 -0.06 -1.02
## 1886 Under 10,000 euros/year 1966 0.03 0.45 -0.30
## 1887 10,000 - 20,000 euros/year 1994 1.02 0.87 -0.21
## 1888 Under 10,000 euros/year 2000 0.68 -0.02 -1.62
## 1889 40,001 - 50,000 euros/year 1990 0.82 -1.71 0.73
## 1890 10,000 - 20,000 euros/year 1997 1.23 -1.52 -1.18
## 1891 Don't want to say 2001 0.42 0.84 0.15
## 1892 40,001 - 50,000 euros/year 1997 0.74 -0.76 0.94
## 1893 20,001 - 30,000 euros/year 1991 -0.80 -0.57 -0.65
## 1894 20,001 - 30,000 euros/year 1995 -0.16 -0.38 -0.93
## 1895 Don't want to say 1988 1.03 1.83 -0.82
## 1896 50,001 - 60,000 euros/year 1991 0.59 1.21 1.51
## 1897 Don't want to say 2002 -0.48 -0.51 -0.16
## 1898 10,000 - 20,000 euros/year 1997 0.80 0.80 -1.30
## 1899 10,000 - 20,000 euros/year 1997 -1.09 -2.15 1.70
## 1900 60,001 - 70,000 euros/year 1979 0.67 0.03 1.58
## 1901 Don't want to say 1990 0.21 0.63 -0.26
## 1902 30,001 - 40,000 euros/year 1997 0.99 1.65 0.27
## 1903 Under 10,000 euros/year 1992 0.92 -0.92 1.23
## 1904 Over 90,000 euros/year 1959 0.64 2.23 0.32
## 1905 Don't want to say 1981 -0.57 1.30 -1.14
## 1906 Don't want to say 2002 0.65 -0.86 1.29
## 1907 Don't want to say 2001 0.27 -0.14 -1.00
## 1908 10,000 - 20,000 euros/year 1995 1.11 -1.96 1.45
## 1909 70,001 - 80,000 euros/year 1988 0.03 0.61 -0.69
## 1910 50,001 - 60,000 euros/year 1999 0.93 -2.05 1.12
## 1911 20,001 - 30,000 euros/year 1988 0.51 0.11 1.03
## 1912 20,001 - 30,000 euros/year 1953 0.70 -1.60 0.36
## 1913 40,001 - 50,000 euros/year 1967 0.48 0.55 0.42
## 1914 10,000 - 20,000 euros/year 1966 0.90 1.68 0.00
## 1915 10,000 - 20,000 euros/year 1995 0.78 -0.79 0.08
## 1916 50,001 - 60,000 euros/year 1961 0.75 1.79 -0.87
## 1917 70,001 - 80,000 euros/year 1977 -2.11 0.67 -0.50
## 1918 Under 10,000 euros/year 1979 0.83 1.72 -1.10
## 1919 10,000 - 20,000 euros/year 1998 -1.41 2.33 0.34
## 1920 30,001 - 40,000 euros/year 1958 -1.18 0.03 -1.72
## 1921 10,000 - 20,000 euros/year 1997 -1.33 -0.37 0.19
## 1922 Over 90,000 euros/year 1994 -0.78 0.98 -1.97
## 1923 70,001 - 80,000 euros/year 1986 0.48 -0.27 -1.18
## 1924 60,001 - 70,000 euros/year 1977 -0.55 -0.29 -1.20
## 1925 40,001 - 50,000 euros/year 1987 0.41 0.91 -1.59
## 1926 30,001 - 40,000 euros/year 1991 1.24 -0.59 1.36
## 1927 Under 10,000 euros/year 1990 -0.36 -2.12 1.66
## 1928 30,001 - 40,000 euros/year 1997 -0.30 -0.50 -1.07
## 1929 Under 10,000 euros/year 1996 0.40 0.58 -0.38
## 1930 40,001 - 50,000 euros/year 2002 0.80 -0.76 0.87
## 1931 Over 90,000 euros/year 1975 1.04 -0.48 0.10
## 1932 Don't want to say 2002 1.16 1.79 -0.28
## 1933 40,001 - 50,000 euros/year 1959 0.42 -0.34 -0.88
## 1934 10,000 - 20,000 euros/year 2001 1.17 -0.76 1.77
## 1935 30,001 - 40,000 euros/year 1990 -0.13 -0.99 1.53
## 1936 Don't want to say 2002 -0.91 2.57 0.95
## 1937 10,000 - 20,000 euros/year 1985 0.67 -0.82 0.01
## 1938 10,000 - 20,000 euros/year 1968 0.16 1.84 0.55
## productivity mindfulness productivity_trans relationship_trans
## 1 -1.71 1.18 2.229350 0.4329004
## 2 -0.89 0.23 2.037155 0.5347594
## 3 0.20 0.63 1.749286 0.4830918
## 4 -0.27 0.45 1.878829 0.2747253
## 5 -0.45 1.07 1.926136 0.4504505
## 6 -1.05 -0.05 2.076054 0.4149378
## 7 -0.15 1.30 1.846619 0.3921569
## 8 -0.60 -0.27 1.964688 0.4081633
## 9 1.58 1.61 1.296148 0.2247191
## 10 0.94 -1.37 1.523155 0.5405405
## 11 0.48 0.38 1.667333 0.3521127
## 12 1.22 1.43 1.428286 0.3731343
## 13 1.40 0.91 1.363818 0.4587156
## 14 -0.33 0.46 1.894730 0.4484305
## 15 1.23 -1.24 1.424781 0.4716981
## 16 1.11 -1.00 1.466288 0.2695418
## 17 0.41 0.21 1.688194 0.4132231
## 18 -0.68 0.05 1.984943 0.1941748
## 19 1.38 -0.08 1.371131 0.4424779
## 20 -0.42 1.38 1.918333 0.2724796
## 21 -0.28 -0.09 1.881489 0.5524862
## 22 -0.15 1.01 1.846619 0.4672897
## 23 -0.03 1.56 1.813836 0.5025126
## 24 -1.80 0.40 2.249444 0.2915452
## 25 1.41 -2.19 1.360147 0.4032258
## 26 -0.80 0.20 2.014944 0.5263158
## 27 0.93 0.63 1.526434 0.4048583
## 28 0.24 -0.22 1.737815 0.3584229
## 29 1.17 -1.06 1.445683 0.2777778
## 30 -1.20 1.21 2.111871 0.5208333
## 31 -1.22 -2.28 2.116601 0.3278689
## 32 -0.02 0.90 1.811077 0.2380952
## 33 0.10 -1.34 1.777639 0.2680965
## 34 -0.26 -0.26 1.876166 0.5000000
## 35 0.29 -2.03 1.723369 0.2369668
## 36 0.60 0.63 1.630951 0.3508772
## 37 0.11 -0.60 1.774824 0.2915452
## 38 1.09 -0.76 1.473092 0.4566210
## 39 0.08 0.44 1.783255 0.3816794
## 40 0.09 -0.75 1.780449 0.4219409
## 41 0.67 -0.92 1.609348 0.3144654
## 42 -0.36 1.17 1.902630 0.4000000
## 43 0.17 -2.05 1.757840 0.2096436
## 44 0.78 -0.40 1.574802 0.4926108
## 45 1.58 -1.26 1.296148 0.4830918
## 46 1.45 -2.41 1.345362 0.5952381
## 47 -0.12 0.32 1.838478 0.4184100
## 48 1.43 1.42 1.352775 0.2487562
## 49 -0.04 0.24 1.816590 0.3984064
## 50 1.41 0.33 1.360147 0.3663004
## 51 0.70 1.02 1.600000 0.4166667
## 52 -0.21 -0.50 1.862794 0.4237288
## 53 -0.65 0.35 1.977372 0.4098361
## 54 -1.11 1.32 2.090454 0.2525253
## 55 1.19 -1.02 1.438749 0.2777778
## 56 0.76 -0.79 1.581139 0.4424779
## 57 -0.93 1.15 2.046949 0.4065041
## 58 -0.49 0.45 1.936492 0.3184713
## 59 -0.22 1.00 1.865476 0.4651163
## 60 -0.27 0.36 1.878829 0.4000000
## 61 -0.15 -0.41 1.846619 0.2475248
## 62 -0.11 -0.59 1.835756 0.3649635
## 63 0.08 0.48 1.783255 0.4444444
## 64 -0.43 0.52 1.920937 0.2732240
## 65 0.46 1.54 1.673320 0.3412969
## 66 0.12 1.51 1.772005 0.3367003
## 67 0.16 1.17 1.760682 0.4784689
## 68 0.47 0.43 1.670329 0.3021148
## 69 -0.43 1.43 1.920937 0.5319149
## 70 1.37 -0.63 1.374773 0.4761905
## 71 -0.13 1.11 1.841195 0.3952569
## 72 0.01 -0.43 1.802776 0.2583979
## 73 0.83 0.01 1.558846 0.4587156
## 74 -1.67 -1.56 2.220360 0.2136752
## 75 1.42 -0.75 1.356466 0.4464286
## 76 0.38 0.04 1.697056 0.2793296
## 77 -0.67 -0.22 1.982423 0.2469136
## 78 -1.28 -1.28 2.130728 0.6896552
## 79 -0.27 1.18 1.878829 0.3236246
## 80 -0.59 -0.63 1.962142 0.3921569
## 81 -2.56 0.72 2.412468 0.4545455
## 82 1.42 0.71 1.356466 0.2583979
## 83 -0.31 -0.52 1.889444 0.3389831
## 84 -0.32 0.58 1.892089 0.5154639
## 85 -1.26 0.96 2.126029 0.4291845
## 86 -0.20 0.50 1.860108 0.4950495
## 87 -0.16 1.04 1.849324 0.4424779
## 88 1.18 0.29 1.442221 0.3846154
## 89 -1.24 0.18 2.121320 0.3125000
## 90 1.49 -1.01 1.330413 0.3891051
## 91 0.99 -2.26 1.506652 0.2865330
## 92 -0.45 0.99 1.926136 0.4132231
## 93 1.18 -2.13 1.442221 0.4032258
## 94 0.48 0.00 1.667333 0.4807692
## 95 -0.90 -0.70 2.039608 0.3076923
## 96 -0.44 0.27 1.923538 0.3875969
## 97 -0.41 0.73 1.915724 0.3875969
## 98 1.09 -0.56 1.473092 0.3968254
## 99 -0.11 -2.55 1.835756 0.1996008
## 100 0.32 0.63 1.714643 0.4424779
## 101 1.50 -0.50 1.326650 0.4545455
## 102 1.52 -0.12 1.319091 0.3205128
## 103 -0.34 0.54 1.897367 0.2849003
## 104 0.18 -0.44 1.754993 0.2538071
## 105 0.08 0.98 1.783255 0.2747253
## 106 0.07 0.42 1.786057 0.2816901
## 107 -0.03 1.27 1.813836 0.4237288
## 108 1.67 0.61 1.260952 0.4310345
## 109 -1.12 -0.26 2.092845 0.1798561
## 110 -0.71 0.85 1.992486 0.3875969
## 111 -0.65 1.39 1.977372 0.5291005
## 112 1.18 0.79 1.442221 0.2304147
## 113 1.40 1.08 1.363818 0.4273504
## 114 0.24 0.54 1.737815 0.4672897
## 115 0.05 -1.03 1.791647 0.2754821
## 116 -0.56 0.54 1.954482 0.5347594
## 117 1.89 -1.76 1.170470 0.3584229
## 118 -0.95 0.24 2.051828 0.3676471
## 119 0.01 0.94 1.802776 0.3968254
## 120 -0.53 1.21 1.946792 0.4081633
## 121 0.87 0.35 1.545962 0.4219409
## 122 -0.85 -0.26 2.027313 0.3086420
## 123 0.03 0.15 1.797220 0.4132231
## 124 1.02 1.69 1.496663 0.3759398
## 125 0.83 0.44 1.558846 0.3472222
## 126 -0.65 -0.05 1.977372 0.2915452
## 127 -0.12 -1.95 1.838478 0.3597122
## 128 -1.07 0.37 2.080865 0.2570694
## 129 -0.74 0.12 2.000000 0.1890359
## 130 -0.86 -2.54 2.029778 0.1506024
## 131 0.62 -0.39 1.624808 0.3311258
## 132 1.12 -2.47 1.462874 0.5494505
## 133 0.05 0.18 1.791647 0.3086420
## 134 -0.15 -1.93 1.846619 0.3134796
## 135 0.11 0.16 1.774824 0.2267574
## 136 -0.09 0.31 1.830301 0.1908397
## 137 -1.52 -0.01 2.186321 0.5780347
## 138 -0.62 -1.13 1.969772 0.5847953
## 139 -0.05 0.74 1.819341 0.3571429
## 140 -0.51 -0.97 1.941649 0.5952381
## 141 -1.24 -0.18 2.121320 0.2597403
## 142 -0.28 -0.12 1.881489 0.2777778
## 143 1.75 0.32 1.228821 0.1739130
## 144 0.04 0.44 1.794436 0.4184100
## 145 0.07 -0.14 1.786057 0.2777778
## 146 -1.02 0.12 2.068816 0.2314815
## 147 -0.39 0.45 1.910497 0.4504505
## 148 0.38 1.04 1.697056 0.3773585
## 149 1.23 0.50 1.424781 0.4424779
## 150 0.92 1.02 1.529706 0.1851852
## 151 0.36 -1.27 1.702939 0.5154639
## 152 -1.67 -0.75 2.220360 0.2145923
## 153 -1.94 -0.29 2.280351 0.2262443
## 154 1.34 1.07 1.385641 0.3663004
## 155 1.45 -0.54 1.345362 0.4385965
## 156 -1.10 -0.61 2.088061 0.1555210
## 157 -0.24 0.23 1.870829 0.4032258
## 158 -0.54 0.27 1.949359 0.5076142
## 159 0.22 0.01 1.743560 0.5076142
## 160 0.12 -0.41 1.772005 0.2739726
## 161 -3.62 0.92 2.622975 0.4347826
## 162 0.74 0.02 1.587451 0.4273504
## 163 1.14 -0.12 1.456022 0.3787879
## 164 -0.20 -0.02 1.860108 0.2840909
## 165 1.08 0.18 1.476482 0.4464286
## 166 1.49 0.58 1.330413 0.4310345
## 167 -0.28 0.24 1.881489 0.3921569
## 168 -0.27 0.38 1.878829 0.4081633
## 169 0.82 0.88 1.562050 0.4166667
## 170 -1.13 1.11 2.095233 0.3571429
## 171 -0.71 0.81 1.992486 0.3968254
## 172 -1.82 0.78 2.253886 0.5524862
## 173 1.24 -1.24 1.421267 0.4000000
## 174 -0.29 1.00 1.884144 0.4784689
## 175 0.23 1.14 1.740690 0.2544529
## 176 0.63 1.73 1.621727 0.2652520
## 177 1.39 0.79 1.367479 0.4347826
## 178 -1.09 -0.87 2.085665 0.4807692
## 179 0.12 -0.04 1.772005 0.4975124
## 180 0.46 0.20 1.673320 0.2732240
## 181 -1.47 0.55 2.174856 0.2932551
## 182 0.76 1.41 1.581139 0.3558719
## 183 0.36 -0.14 1.702939 0.1394700
## 184 1.04 1.77 1.489966 0.3278689
## 185 1.14 0.94 1.456022 0.4219409
## 186 -0.45 0.09 1.926136 0.3937008
## 187 -2.20 -0.02 2.336664 0.3906250
## 188 0.52 -0.55 1.655295 0.4830918
## 189 -0.16 -0.15 1.849324 0.4854369
## 190 1.19 -0.36 1.438749 0.4424779
## 191 -0.03 1.20 1.813836 0.3389831
## 192 -0.96 0.23 2.054264 0.2197802
## 193 0.37 -0.13 1.700000 0.4975124
## 194 0.98 -0.25 1.509967 0.3875969
## 195 1.64 0.08 1.272792 0.3787879
## 196 0.47 0.32 1.670329 0.3412969
## 197 0.40 0.79 1.691153 0.4830918
## 198 -1.55 0.13 2.193171 0.2597403
## 199 0.46 1.00 1.673320 0.2762431
## 200 1.09 0.89 1.473092 0.4201681
## 201 1.71 -2.13 1.244990 0.2118644
## 202 -1.85 1.08 2.260531 0.5376344
## 203 -1.40 1.69 2.158703 0.4444444
## 204 0.82 -1.01 1.562050 0.4807692
## 205 -0.52 1.34 1.944222 0.5405405
## 206 0.85 1.00 1.552417 0.4366812
## 207 -0.26 -0.44 1.876166 0.4166667
## 208 -0.17 -1.22 1.852026 0.5291005
## 209 -0.17 -0.76 1.852026 0.5263158
## 210 1.19 -1.16 1.438749 0.4716981
## 211 0.51 0.27 1.658312 0.2610966
## 212 1.56 0.76 1.303840 0.3134796
## 213 1.10 -0.30 1.469694 0.4694836
## 214 1.37 0.72 1.374773 0.3663004
## 215 0.20 1.04 1.749286 0.3021148
## 216 1.29 1.18 1.403567 0.4347826
## 217 -0.77 -0.41 2.007486 0.4385965
## 218 0.88 0.07 1.542725 0.3717472
## 219 -0.72 -0.14 1.994994 0.2717391
## 220 1.04 1.30 1.489966 0.3690037
## 221 0.32 0.11 1.714643 0.3401361
## 222 -0.15 -0.68 1.846619 0.2906977
## 223 0.33 -0.26 1.711724 0.2369668
## 224 1.68 -2.09 1.256981 0.5208333
## 225 -0.83 0.91 2.022375 0.2375297
## 226 -0.44 -1.14 1.923538 0.4608295
## 227 -0.50 0.30 1.939072 0.2457002
## 228 0.94 0.77 1.523155 0.4201681
## 229 1.27 0.73 1.410674 0.2053388
## 230 -0.48 0.39 1.933908 0.4854369
## 231 0.20 -0.16 1.749286 0.2770083
## 232 0.45 -0.44 1.676305 0.4098361
## 233 -1.75 1.39 2.238303 0.1572327
## 234 1.08 0.78 1.476482 0.1501502
## 235 0.96 1.17 1.516575 0.4098361
## 236 0.28 -0.17 1.726268 0.5263158
## 237 1.01 1.22 1.500000 0.4115226
## 238 -0.24 -1.19 1.870829 0.2118644
## 239 -0.59 -0.80 1.962142 0.3184713
## 240 -1.47 -1.03 2.174856 0.3448276
## 241 0.26 -0.30 1.732051 0.3546099
## 242 -1.12 0.35 2.092845 0.2659574
## 243 0.41 -0.33 1.688194 0.5235602
## 244 0.57 -0.19 1.640122 0.2762431
## 245 -1.01 0.01 2.066398 0.3436426
## 246 -0.17 -1.45 1.852026 0.4291845
## 247 1.69 -0.57 1.252996 0.2994012
## 248 0.59 -0.08 1.634013 0.4716981
## 249 0.78 1.82 1.574802 0.1879699
## 250 -0.15 2.15 1.846619 0.2932551
## 251 -0.43 1.50 1.920937 0.4854369
## 252 0.22 1.02 1.743560 0.2673797
## 253 0.17 1.86 1.757840 0.3472222
## 254 -0.11 1.81 1.835756 0.3484321
## 255 0.93 0.57 1.526434 0.4608295
## 256 1.36 -0.78 1.378405 0.4255319
## 257 -1.43 0.97 2.165641 0.4000000
## 258 1.47 1.30 1.337909 0.3076923
## 259 -0.15 0.18 1.846619 0.4950495
## 260 1.13 -0.85 1.459452 0.5000000
## 261 -0.46 1.22 1.928730 0.4716981
## 262 0.01 -0.78 1.802776 0.3496503
## 263 1.21 1.16 1.431782 0.1587302
## 264 0.23 0.73 1.740690 0.4784689
## 265 0.42 0.57 1.685230 0.3846154
## 266 1.06 1.16 1.483240 0.3984064
## 267 1.05 1.13 1.486607 0.4115226
## 268 0.62 0.15 1.624808 0.2898551
## 269 -0.44 -0.90 1.923538 0.2890173
## 270 -1.06 -0.19 2.078461 0.2890173
## 271 -1.49 -1.47 2.179449 0.3174603
## 272 0.43 1.49 1.682260 0.4115226
## 273 1.12 1.43 1.462874 0.3067485
## 274 0.95 1.03 1.519868 0.4081633
## 275 1.01 1.22 1.500000 0.4115226
## 276 0.33 0.76 1.711724 0.4587156
## 277 -0.35 0.21 1.900000 0.3861004
## 278 0.43 0.05 1.682260 0.2832861
## 279 0.24 1.33 1.737815 0.4761905
## 280 -0.19 0.30 1.857418 0.3521127
## 281 -0.43 0.23 1.920937 0.2857143
## 282 2.01 0.40 1.118034 0.2538071
## 283 -0.81 1.68 2.017424 0.2481390
## 284 1.16 0.86 1.449138 0.2624672
## 285 -2.84 1.54 2.469818 0.4273504
## 286 0.45 -0.12 1.676305 0.4830918
## 287 -0.02 0.37 1.811077 0.2227171
## 288 -0.52 -0.59 1.944222 0.2949853
## 289 0.66 0.25 1.612452 0.4608295
## 290 -0.12 -2.14 1.838478 0.3521127
## 291 -0.19 0.53 1.857418 0.2247191
## 292 -0.47 1.05 1.931321 0.3937008
## 293 -0.28 0.69 1.881489 0.3003003
## 294 -0.89 -0.53 2.037155 0.3076923
## 295 -0.43 -1.62 1.920937 0.4608295
## 296 -0.64 -0.76 1.974842 0.2915452
## 297 -0.16 0.36 1.849324 0.3968254
## 298 -0.03 -0.78 1.813836 0.5434783
## 299 -0.64 0.74 1.974842 0.4854369
## 300 -0.31 0.55 1.889444 0.2732240
## 301 -0.22 0.13 1.865476 0.2066116
## 302 -0.05 0.48 1.819341 0.5000000
## 303 0.69 0.95 1.603122 0.1915709
## 304 -0.71 -0.21 1.992486 0.5524862
## 305 1.55 -1.89 1.307670 0.2994012
## 306 -1.08 -1.13 2.083267 0.3508772
## 307 0.34 -1.18 1.708801 0.5263158
## 308 1.14 -0.17 1.456022 0.2444988
## 309 0.14 -0.86 1.766352 0.1655629
## 310 -0.01 -0.46 1.808314 0.3144654
## 311 0.89 0.23 1.539480 0.4524887
## 312 0.01 -0.81 1.802776 0.2849003
## 313 -0.26 -1.02 1.876166 0.1890359
## 314 -1.70 -0.29 2.227106 0.3048780
## 315 0.96 1.17 1.516575 0.4098361
## 316 1.31 -0.53 1.396424 0.4545455
## 317 0.09 -0.06 1.780449 0.2777778
## 318 -1.47 -0.20 2.174856 0.2915452
## 319 1.21 -1.31 1.431782 0.4672897
## 320 -1.60 -0.73 2.204541 0.3048780
## 321 -0.50 1.41 1.939072 0.3355705
## 322 -0.51 0.27 1.941649 0.2762431
## 323 0.62 -2.19 1.624808 0.1824818
## 324 -0.12 -1.27 1.838478 0.4739336
## 325 -0.21 -0.67 1.862794 0.3558719
## 326 -0.35 0.59 1.900000 0.3311258
## 327 1.16 0.45 1.449138 0.4201681
## 328 -0.09 0.83 1.830301 0.4608295
## 329 -0.85 0.00 2.027313 0.3472222
## 330 -0.58 -0.69 1.959592 0.4651163
## 331 -0.23 0.90 1.868154 0.4566210
## 332 -0.42 -0.54 1.918333 0.3521127
## 333 0.49 0.47 1.664332 0.3278689
## 334 1.35 1.04 1.382027 0.4424779
## 335 -2.70 -2.57 2.441311 0.4484305
## 336 -0.06 -1.56 1.822087 0.3278689
## 337 0.13 0.93 1.769181 0.4807692
## 338 -0.98 -0.98 2.059126 0.2673797
## 339 -0.12 1.34 1.838478 0.4629630
## 340 -0.16 1.34 1.849324 0.3846154
## 341 1.04 0.54 1.489966 0.4132231
## 342 0.60 -1.50 1.630951 0.4424779
## 343 -0.73 -0.68 1.997498 0.5747126
## 344 0.37 0.46 1.700000 0.4545455
## 345 -1.37 -0.68 2.151743 0.3058104
## 346 2.26 0.26 1.000000 0.2257336
## 347 0.57 1.13 1.640122 0.2427184
## 348 -0.95 -1.37 2.051828 0.2652520
## 349 0.53 0.64 1.652271 0.2298851
## 350 -0.14 1.01 1.843909 0.1872659
## 351 -0.06 0.93 1.822087 0.4545455
## 352 1.15 0.75 1.452584 0.4255319
## 353 0.68 0.89 1.606238 0.2518892
## 354 0.43 0.83 1.682260 0.2816901
## 355 -0.57 0.38 1.957039 0.4629630
## 356 -0.65 0.02 1.977372 0.2793296
## 357 0.20 1.35 1.749286 0.3424658
## 358 0.37 -0.21 1.700000 0.4629630
## 359 1.71 0.44 1.244990 0.2066116
## 360 -0.48 -0.08 1.933908 0.4132231
## 361 0.36 -0.91 1.702939 0.5291005
## 362 0.29 -1.00 1.723369 0.4830918
## 363 0.94 0.76 1.523155 0.4065041
## 364 0.97 -0.30 1.513275 0.4524887
## 365 -0.53 0.24 1.946792 0.4310345
## 366 0.01 0.74 1.802776 0.4098361
## 367 0.25 -0.63 1.734935 0.1976285
## 368 -1.59 -0.85 2.202272 0.5376344
## 369 -0.22 1.00 1.865476 0.4651163
## 370 -0.36 0.77 1.902630 0.2994012
## 371 -1.61 -1.26 2.206808 0.2074689
## 372 0.44 0.91 1.679286 0.2967359
## 373 -0.63 -0.98 1.972308 0.5649718
## 374 -0.35 1.16 1.900000 0.2680965
## 375 1.27 0.48 1.410674 0.4132231
## 376 0.06 0.46 1.788854 0.4149378
## 377 -0.32 0.23 1.892089 0.2369668
## 378 0.67 0.15 1.609348 0.4545455
## 379 0.56 0.63 1.643168 0.3759398
## 380 1.49 0.59 1.330413 0.3030303
## 381 -0.78 1.50 2.009975 0.1886792
## 382 -2.59 -1.00 2.418677 0.3875969
## 383 0.65 -2.32 1.615549 0.5714286
## 384 0.89 -0.70 1.539480 0.4424779
## 385 0.62 1.29 1.624808 0.4237288
## 386 -0.80 -1.17 2.014944 0.4739336
## 387 -0.05 0.15 1.819341 0.5050505
## 388 -1.07 0.92 2.080865 0.4950495
## 389 -0.32 0.14 1.892089 0.2531646
## 390 1.57 0.02 1.300000 0.3058104
## 391 -1.01 -0.23 2.066398 0.5464481
## 392 -0.51 -1.93 1.941649 0.3759398
## 393 -0.03 0.22 1.813836 0.2840909
## 394 -1.46 1.36 2.172556 0.5076142
## 395 0.30 -1.09 1.720465 0.5235602
## 396 1.27 0.52 1.410674 0.4424779
## 397 1.40 0.07 1.363818 0.4608295
## 398 -0.03 0.50 1.813836 0.2754821
## 399 0.41 1.22 1.688194 0.3448276
## 400 0.13 -0.39 1.769181 0.3649635
## 401 -1.52 0.33 2.186321 0.5681818
## 402 0.64 0.42 1.618641 0.3521127
## 403 1.29 0.46 1.403567 0.3875969
## 404 1.19 0.99 1.438749 0.4237288
## 405 -0.04 0.87 1.816590 0.4761905
## 406 -0.46 -0.42 1.928730 0.2304147
## 407 -0.52 0.49 1.944222 0.3424658
## 408 -0.17 1.02 1.852026 0.3759398
## 409 0.12 1.28 1.772005 0.3144654
## 410 0.96 -2.10 1.516575 0.4201681
## 411 -1.47 0.33 2.174856 0.4424779
## 412 -1.54 -2.99 2.190890 0.1607717
## 413 -1.53 -1.16 2.188607 0.3968254
## 414 0.43 1.03 1.682260 0.4807692
## 415 0.75 1.22 1.584298 0.4098361
## 416 0.24 0.46 1.737815 0.3921569
## 417 2.10 -0.67 1.077033 0.5263158
## 418 -0.15 0.03 1.846619 0.4000000
## 419 -0.59 0.63 1.962142 0.2801120
## 420 -0.25 -0.82 1.873499 0.5434783
## 421 -0.64 1.51 1.974842 0.3968254
## 422 -1.00 -1.13 2.063977 0.3508772
## 423 1.24 0.42 1.421267 0.3745318
## 424 1.38 -0.24 1.371131 0.4524887
## 425 0.16 -2.97 1.760682 0.5988024
## 426 -2.50 -0.52 2.400000 0.3174603
## 427 0.01 -0.50 1.802776 0.3086420
## 428 0.09 -0.27 1.780449 0.4830918
## 429 -0.29 0.10 1.884144 0.3448276
## 430 0.18 0.96 1.754993 0.3891051
## 431 0.59 -0.19 1.634013 0.4065041
## 432 -0.61 -1.13 1.967232 0.2364066
## 433 -0.34 0.79 1.897367 0.4484305
## 434 0.00 -0.56 1.805547 0.3597122
## 435 -1.69 -1.58 2.224860 0.6896552
## 436 0.33 -0.14 1.711724 0.4784689
## 437 -0.70 1.50 1.989975 0.4651163
## 438 1.32 0.83 1.392839 0.4201681
## 439 -1.39 -0.81 2.156386 0.2392344
## 440 0.03 0.13 1.797220 0.3225806
## 441 1.13 -0.21 1.459452 0.3891051
## 442 -0.73 1.54 1.997498 0.2710027
## 443 1.21 1.09 1.431782 0.4201681
## 444 1.03 -0.05 1.493318 0.2638522
## 445 -0.29 1.41 1.884144 0.2409639
## 446 1.36 0.74 1.378405 0.4219409
## 447 1.19 1.10 1.438749 0.3144654
## 448 0.14 0.45 1.766352 0.1792115
## 449 0.69 0.26 1.603122 0.3816794
## 450 -0.51 -1.80 1.941649 0.3039514
## 451 0.33 1.26 1.711724 0.4716981
## 452 0.45 -0.45 1.676305 0.2732240
## 453 -0.37 0.98 1.905256 0.4608295
## 454 1.72 -0.84 1.240967 0.2493766
## 455 1.25 0.00 1.417745 0.3773585
## 456 -0.50 0.67 1.939072 0.3154574
## 457 0.31 0.37 1.717556 0.4587156
## 458 -0.87 -0.96 2.032240 0.2004008
## 459 -0.86 -0.71 2.029778 0.1912046
## 460 -0.14 -1.00 1.843909 0.3787879
## 461 1.06 -0.09 1.483240 0.4444444
## 462 -1.07 0.36 2.080865 0.4444444
## 463 0.28 1.21 1.726268 0.4694836
## 464 1.25 0.85 1.417745 0.4291845
## 465 0.68 1.34 1.606238 0.3412969
## 466 -2.13 0.35 2.321637 0.3891051
## 467 0.12 1.34 1.772005 0.2242152
## 468 -0.33 -2.28 1.894730 0.4273504
## 469 0.80 0.23 1.568439 0.4366812
## 470 -0.51 1.28 1.941649 0.5347594
## 471 0.47 1.26 1.670329 0.2325581
## 472 -0.45 -1.21 1.926136 0.3472222
## 473 1.47 0.08 1.337909 0.3773585
## 474 0.82 1.32 1.562050 0.3508772
## 475 -0.45 -0.82 1.926136 0.2777778
## 476 0.67 0.43 1.609348 0.3623188
## 477 0.28 1.50 1.726268 0.4716981
## 478 0.22 0.18 1.743560 0.4132231
## 479 0.72 0.99 1.593738 0.4115226
## 480 -0.51 -0.26 1.941649 0.2923977
## 481 1.56 1.04 1.303840 0.4366812
## 482 0.76 -0.35 1.581139 0.3289474
## 483 0.38 0.22 1.697056 0.2341920
## 484 1.12 0.21 1.462874 0.4219409
## 485 1.10 -1.09 1.469694 0.5025126
## 486 -0.40 0.33 1.913113 0.5076142
## 487 -0.07 0.12 1.824829 0.4149378
## 488 0.60 1.05 1.630951 0.4694836
## 489 -1.12 -0.49 2.092845 0.2433090
## 490 0.29 1.18 1.723369 0.2949853
## 491 -1.08 -0.33 2.083267 0.2252252
## 492 0.25 0.86 1.734935 0.4048583
## 493 0.14 -0.05 1.766352 0.4444444
## 494 1.45 0.14 1.345362 0.3861004
## 495 0.16 1.01 1.760682 0.4464286
## 496 0.93 0.63 1.526434 0.4048583
## 497 0.71 1.30 1.596872 0.4629630
## 498 0.41 1.31 1.688194 0.3623188
## 499 0.06 0.60 1.788854 0.4975124
## 500 -0.41 0.31 1.915724 0.4000000
## 501 0.06 -1.05 1.788854 0.4608295
## 502 -0.17 -0.09 1.852026 0.2272727
## 503 0.48 0.91 1.667333 0.2747253
## 504 1.18 -2.21 1.442221 0.5050505
## 505 -0.27 1.72 1.878829 0.4694836
## 506 0.45 0.51 1.676305 0.3521127
## 507 0.04 0.61 1.794436 0.3558719
## 508 0.52 -0.13 1.655295 0.4926108
## 509 1.24 -1.07 1.421267 0.4651163
## 510 0.21 0.70 1.746425 0.3012048
## 511 0.49 -1.19 1.664332 0.5464481
## 512 0.75 0.65 1.584298 0.4566210
## 513 -0.35 0.48 1.900000 0.2840909
## 514 1.98 -0.18 1.131371 0.1872659
## 515 1.26 0.68 1.414214 0.3412969
## 516 1.17 -0.51 1.445683 0.4566210
## 517 -1.51 -0.72 2.184033 0.2079002
## 518 0.79 1.33 1.571623 0.3436426
## 519 -0.70 1.18 1.989975 0.4694836
## 520 0.30 0.05 1.720465 0.3937008
## 521 0.32 -0.23 1.714643 0.4950495
## 522 -0.44 0.39 1.923538 0.2732240
## 523 -0.82 0.17 2.019901 0.4672897
## 524 0.95 1.33 1.519868 0.4273504
## 525 0.18 -1.26 1.754993 0.5347594
## 526 0.22 0.40 1.743560 0.3355705
## 527 1.22 0.30 1.428286 0.4464286
## 528 1.59 -3.56 1.292285 0.3355705
## 529 -0.69 1.40 1.987461 0.2631579
## 530 0.03 0.44 1.797220 0.5050505
## 531 -1.71 0.12 2.229350 0.6711409
## 532 -0.51 0.50 1.941649 0.2012072
## 533 -1.52 -2.62 2.186321 0.1379310
## 534 0.13 0.44 1.769181 0.3584229
## 535 0.04 0.85 1.794436 0.2994012
## 536 1.79 0.03 1.212436 0.3322259
## 537 0.60 -0.33 1.630951 0.3355705
## 538 0.91 -0.66 1.532971 0.4761905
## 539 1.16 -0.44 1.449138 0.4366812
## 540 -0.84 0.87 2.024846 0.5025126
## 541 0.10 1.00 1.777639 0.4807692
## 542 0.69 0.69 1.603122 0.3846154
## 543 0.11 0.36 1.774824 0.3816794
## 544 0.12 -0.70 1.772005 0.4366812
## 545 1.15 -2.77 1.452584 0.3731343
## 546 1.04 0.19 1.489966 0.3891051
## 547 -1.37 -0.07 2.151743 0.4484305
## 548 -3.09 0.04 2.519921 0.5025126
## 549 0.88 -1.32 1.542725 0.4608295
## 550 1.39 0.62 1.367479 0.4291845
## 551 -0.27 0.57 1.878829 0.2770083
## 552 1.49 -0.21 1.330413 0.1865672
## 553 0.81 -1.21 1.565248 0.2717391
## 554 -1.32 -1.10 2.140093 0.2976190
## 555 -0.08 0.66 1.827567 0.3424658
## 556 1.13 -1.26 1.459452 0.4115226
## 557 1.53 0.69 1.315295 0.3636364
## 558 0.07 0.82 1.786057 0.4672897
## 559 -1.01 -0.59 2.066398 0.3115265
## 560 0.42 1.04 1.685230 0.2132196
## 561 -1.65 0.78 2.215852 0.4444444
## 562 1.46 0.44 1.341641 0.2057613
## 563 -0.84 0.84 2.024846 0.3521127
## 564 1.72 -1.39 1.240967 0.3802281
## 565 -1.92 0.87 2.275961 0.5405405
## 566 -0.46 0.57 1.928730 0.5102041
## 567 0.78 1.28 1.574802 0.4098361
## 568 0.08 0.02 1.783255 0.3484321
## 569 -2.09 1.69 2.313007 0.4219409
## 570 -0.91 0.25 2.042058 0.4830918
## 571 0.96 1.17 1.516575 0.4098361
## 572 -0.09 0.49 1.830301 0.2227171
## 573 -0.92 -0.83 2.044505 0.2717391
## 574 1.27 0.35 1.410674 0.4273504
## 575 -0.05 0.28 1.819341 0.3472222
## 576 -1.30 0.86 2.135416 0.5050505
## 577 -1.53 0.39 2.188607 0.4444444
## 578 -0.12 -0.24 1.838478 0.3267974
## 579 1.06 0.81 1.483240 0.4149378
## 580 -2.12 -1.30 2.319483 0.2949853
## 581 -0.95 1.83 2.051828 0.3816794
## 582 0.75 0.16 1.584298 0.4291845
## 583 -1.37 0.89 2.151743 0.5780347
## 584 -0.13 -0.66 1.841195 0.2570694
## 585 0.17 0.41 1.757840 0.3448276
## 586 1.06 1.30 1.483240 0.4385965
## 587 0.56 -0.15 1.643168 0.3984064
## 588 0.42 0.66 1.685230 0.3367003
## 589 1.96 0.15 1.140175 0.4761905
## 590 0.34 0.89 1.708801 0.4608295
## 591 -0.94 -0.93 2.049390 0.2066116
## 592 2.16 -3.89 1.048809 0.5319149
## 593 0.27 1.51 1.729162 0.3333333
## 594 -0.04 0.38 1.816590 0.4807692
## 595 0.47 -0.01 1.670329 0.4016064
## 596 0.23 -0.18 1.740690 0.3921569
## 597 -1.29 1.12 2.133073 0.4950495
## 598 -3.61 0.53 2.621068 0.4065041
## 599 1.19 0.51 1.438749 0.3508772
## 600 0.49 1.73 1.664332 0.4405286
## 601 1.08 0.75 1.476482 0.2506266
## 602 0.77 1.04 1.577973 0.1459854
## 603 -0.29 1.27 1.884144 0.2403846
## 604 -1.02 0.31 2.068816 0.3731343
## 605 -0.19 -1.19 1.857418 0.2865330
## 606 0.49 1.05 1.664332 0.3194888
## 607 1.28 0.16 1.407125 0.4310345
## 608 -0.21 1.15 1.862794 0.4950495
## 609 0.55 -1.21 1.646208 0.5555556
## 610 1.32 0.37 1.392839 0.4219409
## 611 0.28 -1.23 1.726268 0.4273504
## 612 -2.67 -0.38 2.435159 0.5681818
## 613 0.95 0.91 1.519868 0.3012048
## 614 -0.30 0.41 1.886796 0.4854369
## 615 1.43 -0.65 1.352775 0.4566210
## 616 -1.09 1.17 2.085665 0.2570694
## 617 0.44 0.70 1.679286 0.4830918
## 618 0.45 -0.39 1.676305 0.4901961
## 619 1.24 1.19 1.421267 0.4291845
## 620 0.28 -0.29 1.726268 0.4901961
## 621 -1.82 0.61 2.253886 0.4347826
## 622 1.12 -0.14 1.462874 0.3861004
## 623 -0.58 -1.42 1.959592 0.3584229
## 624 0.38 -0.74 1.697056 0.3558719
## 625 0.94 1.07 1.523155 0.2832861
## 626 0.04 1.11 1.794436 0.2178649
## 627 0.18 -2.02 1.754993 0.6024096
## 628 -1.31 1.31 2.137756 0.5154639
## 629 0.20 -1.39 1.749286 0.2341920
## 630 0.22 0.15 1.743560 0.4444444
## 631 -0.12 0.62 1.838478 0.4761905
## 632 -2.97 0.61 2.495997 0.5681818
## 633 -0.62 -0.25 1.969772 0.4201681
## 634 0.84 0.65 1.555635 0.4484305
## 635 -1.91 0.01 2.273763 0.3378378
## 636 -1.32 -0.78 2.140093 0.3076923
## 637 1.33 1.53 1.389244 0.2538071
## 638 0.31 -0.81 1.717556 0.2958580
## 639 0.14 -2.19 1.766352 0.3289474
## 640 -0.45 -0.89 1.926136 0.2793296
## 641 0.74 -1.21 1.587451 0.5128205
## 642 0.75 0.27 1.584298 0.1501502
## 643 -2.11 -0.38 2.317326 0.2518892
## 644 0.80 -0.95 1.568439 0.3558719
## 645 1.51 -0.25 1.322876 0.2564103
## 646 -1.56 -2.24 2.195450 0.4310345
## 647 1.60 0.14 1.288410 0.2597403
## 648 -0.43 -0.78 1.920937 0.5154639
## 649 -0.18 1.53 1.854724 0.4098361
## 650 0.00 -0.74 1.805547 0.2551020
## 651 -0.94 -1.57 2.049390 0.1672241
## 652 -0.07 1.23 1.824829 0.3333333
## 653 -0.71 -0.59 1.992486 0.5649718
## 654 -1.44 -0.32 2.167948 0.5555556
## 655 0.39 0.13 1.694107 0.3267974
## 656 -0.21 0.49 1.862794 0.3690037
## 657 -0.65 -1.65 1.977372 0.5076142
## 658 0.01 0.61 1.802776 0.4694836
## 659 0.65 0.39 1.615549 0.2985075
## 660 0.62 -0.37 1.624808 0.3086420
## 661 -0.11 -0.03 1.835756 0.2724796
## 662 -0.77 0.11 2.007486 0.2469136
## 663 -2.40 -1.04 2.379075 0.2785515
## 664 -0.79 -1.64 2.012461 0.3731343
## 665 0.05 0.13 1.791647 0.4310345
## 666 -0.92 1.18 2.044505 0.2849003
## 667 -1.20 0.89 2.111871 0.4081633
## 668 -0.69 0.07 1.987461 0.3496503
## 669 -1.18 -1.53 2.107131 0.3831418
## 670 0.00 0.30 1.805547 0.3472222
## 671 1.20 0.80 1.435270 0.4273504
## 672 0.66 0.36 1.612452 0.3225806
## 673 0.76 -0.21 1.581139 0.2610966
## 674 0.23 -0.64 1.740690 0.3225806
## 675 -0.20 -0.44 1.860108 0.2932551
## 676 0.48 0.00 1.667333 0.4807692
## 677 -0.52 0.11 1.944222 0.3952569
## 678 -0.76 -0.54 2.004994 0.5181347
## 679 -1.73 -0.22 2.233831 0.4081633
## 680 -2.62 0.11 2.424871 0.2145923
## 681 -1.33 -0.72 2.142429 0.4385965
## 682 1.53 -2.22 1.315295 0.2710027
## 683 0.79 0.19 1.571623 0.5050505
## 684 1.25 -0.86 1.417745 0.2631579
## 685 0.89 -1.18 1.539480 0.1915709
## 686 0.68 -0.39 1.606238 0.2262443
## 687 -0.23 -0.63 1.868154 0.4926108
## 688 0.85 0.62 1.552417 0.3484321
## 689 -0.53 -0.63 1.946792 0.2898551
## 690 0.31 0.15 1.717556 0.1908397
## 691 1.56 0.62 1.303840 0.2645503
## 692 0.87 2.08 1.545962 0.3424658
## 693 1.06 -0.53 1.483240 0.4484305
## 694 -1.71 1.35 2.229350 0.3745318
## 695 -0.15 0.44 1.846619 0.2444988
## 696 -0.27 -0.87 1.878829 0.3906250
## 697 -0.03 0.24 1.813836 0.3194888
## 698 -1.39 0.41 2.156386 0.2008032
## 699 0.00 -0.14 1.805547 0.4901961
## 700 -0.38 -1.32 1.907878 0.5025126
## 701 0.71 -0.63 1.596872 0.2293578
## 702 -0.40 0.15 1.913113 0.2680965
## 703 1.27 -0.08 1.410674 0.2923977
## 704 1.22 0.72 1.428286 0.3448276
## 705 -0.55 1.28 1.951922 0.4739336
## 706 -0.62 0.93 1.969772 0.2785515
## 707 0.24 -0.09 1.737815 0.4975124
## 708 1.19 0.81 1.438749 0.4524887
## 709 0.08 0.17 1.783255 0.4098361
## 710 -0.08 0.22 1.827567 0.3225806
## 711 -2.02 1.20 2.297825 0.2631579
## 712 0.26 0.05 1.732051 0.3484321
## 713 0.65 -1.04 1.615549 0.2293578
## 714 -1.83 1.14 2.256103 0.5434783
## 715 -1.31 1.07 2.137756 0.2840909
## 716 -0.50 1.47 1.939072 0.4608295
## 717 0.88 0.19 1.542725 0.4608295
## 718 1.11 0.41 1.466288 0.4587156
## 719 -0.16 1.46 1.849324 0.4464286
## 720 -1.21 0.09 2.114237 0.1968504
## 721 -0.05 0.70 1.819341 0.2217295
## 722 -1.74 -0.55 2.236068 0.4950495
## 723 -0.26 -1.00 1.876166 0.2036660
## 724 1.73 -1.01 1.236932 0.4424779
## 725 1.24 0.89 1.421267 0.3584229
## 726 -1.06 0.38 2.078461 0.2739726
## 727 -0.16 -0.24 1.849324 0.3236246
## 728 -1.72 -0.12 2.231591 0.4291845
## 729 0.66 -1.15 1.612452 0.3401361
## 730 0.18 -0.34 1.754993 0.4366812
## 731 -0.53 0.45 1.946792 0.5025126
## 732 0.73 -0.12 1.590597 0.2380952
## 733 -0.18 0.90 1.854724 0.4694836
## 734 -0.51 1.21 1.941649 0.4694836
## 735 1.28 1.08 1.407125 0.4629630
## 736 -0.29 -1.41 1.884144 0.3125000
## 737 0.31 0.16 1.717556 0.2403846
## 738 1.19 1.17 1.438749 0.3663004
## 739 -0.56 -0.05 1.954482 0.2724796
## 740 -1.29 1.58 2.133073 0.5208333
## 741 -0.39 0.14 1.910497 0.2865330
## 742 0.96 1.17 1.516575 0.4098361
## 743 -0.22 0.98 1.865476 0.4694836
## 744 1.72 -0.56 1.240967 0.2645503
## 745 1.15 -1.00 1.452584 0.4950495
## 746 -1.34 -0.30 2.144761 0.2873563
## 747 -1.47 0.52 2.174856 0.2941176
## 748 0.21 1.19 1.746425 0.4484305
## 749 0.89 0.46 1.539480 0.4255319
## 750 -0.79 2.13 2.012461 0.3460208
## 751 1.23 -3.01 1.424781 0.3115265
## 752 1.13 -0.06 1.459452 0.4672897
## 753 -1.08 0.44 2.083267 0.4000000
## 754 -1.41 0.96 2.161018 0.5681818
## 755 -1.13 0.32 2.095233 0.3484321
## 756 -0.45 -0.71 1.926136 0.5208333
## 757 0.06 -0.87 1.788854 0.5649718
## 758 1.41 0.44 1.360147 0.2352941
## 759 -0.72 1.32 1.994994 0.3448276
## 760 -0.40 0.87 1.913113 0.2680965
## 761 -0.20 0.14 1.860108 0.2747253
## 762 -0.10 -1.15 1.833030 0.2849003
## 763 0.89 1.03 1.539480 0.2994012
## 764 0.40 1.19 1.691153 0.4830918
## 765 0.33 1.26 1.711724 0.4716981
## 766 1.39 -0.53 1.367479 0.4629630
## 767 0.18 -0.02 1.754993 0.1930502
## 768 1.18 0.52 1.442221 0.4629630
## 769 -0.36 -1.21 1.902630 0.2004008
## 770 -1.66 -0.32 2.218107 0.1901141
## 771 -0.78 0.55 2.009975 0.2770083
## 772 -0.83 -0.15 2.022375 0.4444444
## 773 -0.15 -1.96 1.846619 0.3436426
## 774 1.67 -0.56 1.260952 0.2915452
## 775 -2.12 1.35 2.319483 0.2890173
## 776 0.89 0.97 1.539480 0.2212389
## 777 0.94 0.86 1.523155 0.2277904
## 778 -0.18 -2.01 1.854724 0.3436426
## 779 -0.36 -0.53 1.902630 0.1669449
## 780 -0.93 0.72 2.046949 0.2865330
## 781 -0.71 0.17 1.992486 0.4132231
## 782 -0.12 -0.03 1.838478 0.2570694
## 783 1.21 -1.31 1.431782 0.4672897
## 784 -0.26 0.42 1.876166 0.1926782
## 785 0.00 0.52 1.805547 0.4184100
## 786 1.12 0.42 1.462874 0.2801120
## 787 0.65 0.29 1.615549 0.3802281
## 788 -0.90 0.39 2.039608 0.5025126
## 789 -0.19 -1.92 1.857418 0.3787879
## 790 -1.10 -1.47 2.088061 0.2427184
## 791 0.83 -1.18 1.558846 0.3649635
## 792 -1.63 1.06 2.211334 0.3174603
## 793 0.51 -0.02 1.658312 0.4184100
## 794 0.37 1.00 1.700000 0.4739336
## 795 0.26 -0.43 1.732051 0.2433090
## 796 -0.08 0.99 1.827567 0.3278689
## 797 0.23 -1.54 1.740690 0.3448276
## 798 1.04 0.36 1.489966 0.3472222
## 799 0.58 0.11 1.637071 0.4291845
## 800 -1.08 0.75 2.083267 0.2793296
## 801 0.94 0.57 1.523155 0.4651163
## 802 1.33 -1.27 1.389244 0.4784689
## 803 -0.83 0.20 2.022375 0.2506266
## 804 -1.00 -0.87 2.063977 0.6211180
## 805 0.07 1.04 1.786057 0.3968254
## 806 -0.81 -0.06 2.017424 0.3787879
## 807 -0.49 -0.04 1.936492 0.4878049
## 808 -0.60 -1.44 1.964688 0.2976190
## 809 -0.52 0.16 1.944222 0.5000000
## 810 -0.57 0.08 1.957039 0.2487562
## 811 1.38 0.16 1.371131 0.2941176
## 812 -1.07 -0.37 2.080865 0.2967359
## 813 1.04 1.52 1.489966 0.3144654
## 814 -0.07 0.92 1.824829 0.4878049
## 815 -0.08 -0.33 1.827567 0.3184713
## 816 1.21 0.26 1.431782 0.2659574
## 817 1.25 0.85 1.417745 0.4291845
## 818 -0.49 0.48 1.936492 0.1937984
## 819 0.42 1.56 1.685230 0.2770083
## 820 -0.11 0.43 1.835756 0.2747253
## 821 0.93 0.96 1.526434 0.4166667
## 822 0.38 1.65 1.697056 0.2331002
## 823 -0.97 0.68 2.056696 0.2583979
## 824 0.42 1.58 1.685230 0.4566210
## 825 -0.94 -0.38 2.049390 0.2141328
## 826 -2.43 -0.76 2.385372 0.4081633
## 827 0.42 0.92 1.685230 0.3003003
## 828 -1.15 -1.03 2.100000 0.3095975
## 829 0.61 0.19 1.627882 0.2040816
## 830 -0.72 -0.61 1.994994 0.4761905
## 831 -2.14 0.11 2.323790 0.2915452
## 832 -1.23 -0.37 2.118962 0.3831418
## 833 -0.09 -1.11 1.830301 0.4651163
## 834 -0.78 0.97 2.009975 0.3134796
## 835 0.37 0.79 1.700000 0.3663004
## 836 0.22 -1.85 1.743560 0.2777778
## 837 1.34 -0.19 1.385641 0.4032258
## 838 -0.02 0.45 1.811077 0.2793296
## 839 0.14 -1.33 1.766352 0.4237288
## 840 1.75 -0.27 1.228821 0.4048583
## 841 0.76 0.92 1.581139 0.4347826
## 842 0.28 -0.62 1.726268 0.3787879
## 843 1.38 0.11 1.371131 0.2386635
## 844 1.33 0.21 1.389244 0.4329004
## 845 -2.17 0.65 2.330236 0.4329004
## 846 -0.91 0.42 2.042058 0.3968254
## 847 1.32 0.50 1.392839 0.4366812
## 848 0.77 -0.50 1.577973 0.5076142
## 849 0.44 -0.77 1.679286 0.3623188
## 850 -1.19 1.51 2.109502 0.3289474
## 851 0.96 0.52 1.516575 0.4524887
## 852 0.78 1.04 1.574802 0.4219409
## 853 1.74 0.15 1.232883 0.4405286
## 854 -0.07 -0.55 1.824829 0.3448276
## 855 -1.53 1.19 2.188607 0.5649718
## 856 0.28 0.95 1.726268 0.3937008
## 857 1.62 -0.88 1.280625 0.2525253
## 858 -0.30 0.42 1.886796 0.4608295
## 859 1.02 1.03 1.496663 0.4149378
## 860 -0.17 -0.49 1.852026 0.4385965
## 861 -0.49 -0.20 1.936492 0.2923977
## 862 0.71 -0.80 1.596872 0.3745318
## 863 -0.03 -1.45 1.813836 0.4098361
## 864 -0.30 0.39 1.886796 0.3436426
## 865 0.31 0.57 1.717556 0.2680965
## 866 -1.52 -0.25 2.186321 0.3460208
## 867 0.16 0.49 1.760682 0.2012072
## 868 -0.37 0.29 1.905256 0.4950495
## 869 -0.21 -1.68 1.862794 0.2604167
## 870 -0.14 0.74 1.843909 0.4672897
## 871 1.30 0.47 1.400000 0.1908397
## 872 0.07 -0.37 1.786057 0.4484305
## 873 0.02 1.16 1.800000 0.3311258
## 874 1.44 1.08 1.349074 0.3436426
## 875 0.50 1.49 1.661325 0.4048583
## 876 0.52 0.93 1.655295 0.2538071
## 877 -0.46 0.18 1.928730 0.5208333
## 878 -0.84 0.35 2.024846 0.2824859
## 879 -0.16 0.09 1.849324 0.3831418
## 880 0.21 1.14 1.746425 0.3401361
## 881 -0.46 -0.97 1.928730 0.5524862
## 882 -0.45 0.22 1.926136 0.2272727
## 883 -0.30 0.48 1.886796 0.4201681
## 884 1.31 -0.32 1.396424 0.4524887
## 885 1.58 0.26 1.296148 0.3802281
## 886 0.36 -0.30 1.702939 0.4975124
## 887 0.81 0.75 1.565248 0.3367003
## 888 0.05 1.59 1.791647 0.4807692
## 889 1.33 -1.14 1.389244 0.4761905
## 890 0.63 0.02 1.621727 0.1926782
## 891 -2.39 1.72 2.376973 0.3636364
## 892 1.03 0.91 1.493318 0.2949853
## 893 -1.67 0.99 2.220360 0.4672897
## 894 -1.46 -0.85 2.172556 0.5988024
## 895 1.69 -2.51 1.252996 0.1824818
## 896 1.45 0.25 1.345362 0.4255319
## 897 -3.03 -1.54 2.507987 1.0000000
## 898 1.33 0.79 1.389244 0.3086420
## 899 1.33 0.86 1.389244 0.2450980
## 900 0.72 0.07 1.593738 0.3134796
## 901 -0.29 0.65 1.884144 0.3460208
## 902 1.14 1.38 1.456022 0.1992032
## 903 1.28 -0.11 1.407125 0.1547988
## 904 0.96 -2.13 1.516575 0.5847953
## 905 -0.16 0.34 1.849324 0.2747253
## 906 1.08 -1.04 1.476482 0.4950495
## 907 -0.09 -0.06 1.830301 0.3472222
## 908 -2.04 1.39 2.302173 0.4424779
## 909 0.88 -1.00 1.542725 0.5464481
## 910 -0.42 0.39 1.918333 0.3558719
## 911 -0.39 1.20 1.910497 0.4048583
## 912 0.00 -0.56 1.805547 0.3597122
## 913 0.04 0.10 1.794436 0.4878049
## 914 0.00 -0.56 1.805547 0.4366812
## 915 -0.20 1.33 1.860108 0.2754821
## 916 1.94 0.30 1.148913 0.1142857
## 917 -0.73 -0.21 1.997498 0.2949853
## 918 1.00 -1.59 1.503330 0.4347826
## 919 0.90 -2.27 1.536229 0.4629630
## 920 0.29 -0.12 1.723369 0.3472222
## 921 -0.18 0.49 1.854724 0.3367003
## 922 0.34 0.04 1.708801 0.5154639
## 923 1.56 0.70 1.303840 0.4385965
## 924 -1.48 1.35 2.177154 0.1692047
## 925 -1.25 -1.15 2.123676 0.6134969
## 926 0.03 1.91 1.797220 0.2178649
## 927 0.50 -1.84 1.661325 0.1692047
## 928 0.13 -0.76 1.769181 0.2747253
## 929 1.32 -0.99 1.392839 0.4807692
## 930 -2.09 -0.12 2.313007 0.4149378
## 931 -0.63 1.28 1.972308 0.5347594
## 932 -0.08 2.00 1.827567 0.3412969
## 933 0.66 0.84 1.612452 0.4219409
## 934 0.52 -0.71 1.655295 0.2487562
## 935 -1.10 1.22 2.088061 0.2777778
## 936 1.03 2.06 1.493318 0.3773585
## 937 1.56 0.76 1.303840 0.3571429
## 938 -0.42 0.09 1.918333 0.3003003
## 939 0.01 -0.28 1.802776 0.4901961
## 940 0.09 -0.05 1.780449 0.5154639
## 941 1.59 -0.03 1.292285 0.2617801
## 942 -1.29 -0.49 2.133073 0.2557545
## 943 -2.10 0.78 2.315167 0.5181347
## 944 1.84 -0.64 1.191638 0.4629630
## 945 -0.67 0.04 1.982423 0.5025126
## 946 -0.02 -1.21 1.811077 0.3367003
## 947 1.30 0.56 1.400000 0.4184100
## 948 1.12 0.05 1.462874 0.3436426
## 949 0.62 0.51 1.624808 0.4310345
## 950 -0.59 -0.07 1.962142 0.2666667
## 951 0.85 0.02 1.552417 0.3076923
## 952 -0.98 0.05 2.059126 0.2012072
## 953 0.25 1.14 1.734935 0.2808989
## 954 0.83 0.43 1.558846 0.4219409
## 955 0.34 0.09 1.708801 0.2824859
## 956 1.06 1.51 1.483240 0.2710027
## 957 0.92 1.31 1.529706 0.2873563
## 958 1.36 0.74 1.378405 0.4219409
## 959 1.26 0.60 1.414214 0.2409639
## 960 0.00 0.75 1.805547 0.2680965
## 961 -0.06 -0.60 1.822087 0.2610966
## 962 0.48 -1.16 1.667333 0.5319149
## 963 1.39 0.84 1.367479 0.2801120
## 964 0.12 -1.92 1.772005 0.5319149
## 965 0.75 0.55 1.584298 0.2976190
## 966 1.29 0.93 1.403567 0.3597122
## 967 -1.21 -0.74 2.114237 0.3058104
## 968 0.82 -0.13 1.562050 0.4566210
## 969 -0.03 0.22 1.813836 0.2785515
## 970 -1.32 0.63 2.140093 0.3584229
## 971 -0.17 -2.65 1.852026 0.4629630
## 972 0.22 0.43 1.743560 0.4629630
## 973 -1.20 1.23 2.111871 0.5347594
## 974 0.30 0.14 1.720465 0.2673797
## 975 -0.31 0.41 1.889444 0.4761905
## 976 1.37 -1.93 1.374773 0.3134796
## 977 0.69 0.99 1.603122 0.2481390
## 978 0.50 -0.46 1.661325 0.5128205
## 979 0.46 0.97 1.673320 0.3676471
## 980 1.16 1.01 1.449138 0.2375297
## 981 0.22 -0.13 1.743560 0.4065041
## 982 0.56 -0.17 1.643168 0.3484321
## 983 -0.31 0.61 1.889444 0.4566210
## 984 0.33 1.43 1.711724 0.4000000
## 985 -0.42 0.68 1.918333 0.3496503
## 986 -0.06 -1.60 1.822087 0.2398082
## 987 -1.19 0.96 2.109502 0.1980198
## 988 -0.08 0.37 1.827567 0.4201681
## 989 1.40 -0.55 1.363818 0.2123142
## 990 0.59 -0.09 1.634013 0.4901961
## 991 0.41 1.30 1.688194 0.2314815
## 992 0.20 0.64 1.749286 0.3831418
## 993 0.68 1.12 1.606238 0.2816901
## 994 -0.78 -0.87 2.009975 0.5780347
## 995 0.01 0.92 1.802776 0.4694836
## 996 -0.80 -0.83 2.014944 0.3115265
## 997 -0.44 1.37 1.923538 0.4830918
## 998 1.23 1.87 1.424781 0.2604167
## 999 -0.17 0.17 1.852026 0.5208333
## 1000 -0.04 -2.87 1.816590 0.2785515
## 1001 0.17 0.18 1.757840 0.1858736
## 1002 0.85 1.14 1.552417 0.4149378
## 1003 -0.82 0.18 2.019901 0.4166667
## 1004 0.01 -2.11 1.802776 0.3076923
## 1005 -1.17 -1.51 2.104757 0.4065041
## 1006 -1.55 0.05 2.193171 0.4739336
## 1007 0.01 0.24 1.802776 0.2739726
## 1008 1.41 0.46 1.360147 0.3267974
## 1009 1.27 0.00 1.410674 0.2551020
## 1010 -2.43 0.43 2.385372 0.5917160
## 1011 0.94 0.59 1.523155 0.2427184
## 1012 -1.95 1.00 2.282542 0.5555556
## 1013 -1.98 -0.31 2.289105 0.4065041
## 1014 -0.32 -0.44 1.892089 0.2915452
## 1015 -0.22 0.69 1.865476 0.2232143
## 1016 1.36 -0.15 1.378405 0.4385965
## 1017 -0.47 0.77 1.931321 0.5263158
## 1018 0.46 0.82 1.673320 0.4016064
## 1019 -0.37 0.30 1.905256 0.4784689
## 1020 -1.50 -0.58 2.181742 0.2070393
## 1021 -1.76 0.76 2.240536 0.5291005
## 1022 -0.15 -0.01 1.846619 0.3067485
## 1023 1.95 0.07 1.144552 0.2164502
## 1024 0.92 0.37 1.529706 0.4807692
## 1025 0.09 0.50 1.780449 0.3584229
## 1026 -0.37 -0.52 1.905256 0.5524862
## 1027 0.13 -0.66 1.769181 0.4149378
## 1028 -1.61 0.49 2.206808 0.3937008
## 1029 0.93 0.63 1.526434 0.4048583
## 1030 -0.19 1.15 1.857418 0.5000000
## 1031 -0.43 0.43 1.920937 0.4672897
## 1032 0.48 0.03 1.667333 0.5154639
## 1033 -0.97 -2.83 2.056696 0.2083333
## 1034 0.20 0.40 1.749286 0.4347826
## 1035 -0.26 0.31 1.876166 0.2865330
## 1036 -0.48 0.36 1.933908 0.3076923
## 1037 1.21 1.00 1.431782 0.3448276
## 1038 -0.22 -0.33 1.865476 0.3125000
## 1039 1.01 1.19 1.500000 0.4329004
## 1040 0.68 -0.14 1.606238 0.4524887
## 1041 1.26 0.80 1.414214 0.4098361
## 1042 0.50 0.98 1.661325 0.3436426
## 1043 -0.78 1.46 2.009975 0.2652520
## 1044 -0.19 0.14 1.857418 0.3759398
## 1045 -0.08 -0.51 1.827567 0.4291845
## 1046 -0.75 1.31 2.002498 0.4166667
## 1047 0.10 1.00 1.777639 0.3690037
## 1048 -0.30 -0.20 1.886796 0.4201681
## 1049 0.37 -0.17 1.700000 0.4065041
## 1050 -0.30 0.43 1.886796 0.3424658
## 1051 0.69 -0.21 1.603122 0.2958580
## 1052 -0.23 -0.08 1.868154 0.4545455
## 1053 0.10 -0.46 1.777639 0.2906977
## 1054 0.68 1.29 1.606238 0.2857143
## 1055 0.13 -0.65 1.769181 0.5263158
## 1056 0.03 0.35 1.797220 0.3521127
## 1057 0.62 1.22 1.624808 0.3745318
## 1058 -0.20 -0.07 1.860108 0.4950495
## 1059 -0.13 1.29 1.841195 0.4132231
## 1060 0.68 1.05 1.606238 0.4065041
## 1061 1.04 0.54 1.489966 0.4132231
## 1062 -0.78 1.79 2.009975 0.3115265
## 1063 0.72 -0.82 1.593738 0.3584229
## 1064 -0.76 0.89 2.004994 0.4273504
## 1065 0.90 0.00 1.536229 0.4504505
## 1066 -0.44 0.39 1.923538 0.2732240
## 1067 0.74 -1.00 1.587451 0.4784689
## 1068 0.79 1.02 1.571623 0.2283105
## 1069 0.93 0.50 1.526434 0.4184100
## 1070 0.97 0.58 1.513275 0.2557545
## 1071 -3.25 2.32 2.551470 0.4629630
## 1072 -0.35 -1.89 1.900000 0.1912046
## 1073 0.16 -0.18 1.760682 0.5025126
## 1074 -0.07 0.32 1.824829 0.4484305
## 1075 0.26 0.78 1.732051 0.4545455
## 1076 1.04 0.94 1.489966 0.3367003
## 1077 0.68 1.04 1.606238 0.3745318
## 1078 -0.29 -1.77 1.884144 0.2985075
## 1079 0.34 1.46 1.708801 0.5154639
## 1080 -0.43 0.15 1.920937 0.4830918
## 1081 -0.82 0.80 2.019901 0.5000000
## 1082 -0.05 0.01 1.819341 0.3875969
## 1083 -1.04 1.73 2.073644 0.2840909
## 1084 -0.33 0.81 1.894730 0.3558719
## 1085 -1.53 0.27 2.188607 0.5988024
## 1086 -0.32 1.17 1.892089 0.2415459
## 1087 0.62 -0.33 1.624808 0.1564945
## 1088 0.50 0.82 1.661325 0.4651163
## 1089 1.39 -0.70 1.367479 0.4566210
## 1090 0.14 0.23 1.766352 0.2457002
## 1091 -0.65 0.30 1.977372 0.4219409
## 1092 -0.29 -0.02 1.884144 0.3236246
## 1093 -0.02 -0.20 1.811077 0.3968254
## 1094 -2.62 -0.98 2.424871 0.5780347
## 1095 -0.59 1.46 1.962142 0.3521127
## 1096 0.45 -1.02 1.676305 0.2762431
## 1097 -2.88 0.75 2.477902 0.1776199
## 1098 -0.64 0.63 1.974842 0.3649635
## 1099 -0.34 1.00 1.897367 0.4926108
## 1100 1.35 -0.18 1.382027 0.4464286
## 1101 -1.52 0.15 2.186321 0.4385965
## 1102 -0.20 0.16 1.860108 0.2739726
## 1103 -0.41 1.01 1.915724 0.2680965
## 1104 -0.37 -0.59 1.905256 0.5524862
## 1105 0.61 1.06 1.627882 0.4115226
## 1106 -0.98 -0.85 2.059126 0.4166667
## 1107 0.99 0.15 1.506652 0.2309469
## 1108 -0.85 0.48 2.027313 0.2590674
## 1109 0.31 0.61 1.717556 0.3174603
## 1110 0.40 0.09 1.691153 0.2949853
## 1111 0.49 -1.66 1.664332 0.2364066
## 1112 -0.53 -0.43 1.946792 0.2816901
## 1113 0.24 1.23 1.737815 0.4651163
## 1114 -1.98 -3.41 2.289105 0.6535948
## 1115 -1.24 -0.56 2.121320 0.2369668
## 1116 -1.03 -1.43 2.071232 0.5780347
## 1117 -0.90 0.26 2.039608 0.3105590
## 1118 -1.33 -0.03 2.142429 0.5555556
## 1119 0.96 0.85 1.516575 0.3636364
## 1120 0.20 -0.83 1.749286 0.3125000
## 1121 -1.36 -0.58 2.149419 0.4115226
## 1122 0.58 1.16 1.637071 0.4255319
## 1123 -1.57 -0.47 2.197726 0.5376344
## 1124 1.24 -1.07 1.421267 0.4651163
## 1125 -0.31 0.42 1.889444 0.3610108
## 1126 -0.21 0.98 1.862794 0.3891051
## 1127 -0.02 1.41 1.811077 0.3846154
## 1128 0.98 -1.05 1.509967 0.4081633
## 1129 -0.40 -1.17 1.913113 0.2985075
## 1130 -0.45 -0.28 1.926136 0.5000000
## 1131 -0.26 -1.60 1.876166 0.3472222
## 1132 1.23 0.07 1.424781 0.4587156
## 1133 1.32 0.86 1.392839 0.3012048
## 1134 -1.59 -0.60 2.202272 0.5434783
## 1135 -1.01 0.81 2.066398 0.4132231
## 1136 0.37 -0.77 1.700000 0.5524862
## 1137 0.87 0.50 1.545962 0.2398082
## 1138 0.17 -0.29 1.757840 0.4065041
## 1139 0.56 -0.04 1.643168 0.3105590
## 1140 -1.55 -2.38 2.193171 0.3194888
## 1141 -1.63 0.87 2.211334 0.3816794
## 1142 0.11 0.53 1.774824 0.4784689
## 1143 1.28 1.07 1.407125 0.4237288
## 1144 -1.84 -0.78 2.258318 0.6172840
## 1145 1.15 -1.25 1.452584 0.3676471
## 1146 0.66 0.95 1.612452 0.2127660
## 1147 -0.68 -0.98 1.984943 0.1730104
## 1148 0.56 0.66 1.643168 0.2293578
## 1149 -1.38 1.18 2.154066 0.4385965
## 1150 0.37 1.07 1.700000 0.3076923
## 1151 2.16 -1.47 1.048809 0.2087683
## 1152 -0.59 0.69 1.962142 0.5263158
## 1153 -2.54 -1.15 2.408319 0.5263158
## 1154 -3.24 -1.18 2.549510 0.1636661
## 1155 -1.53 0.97 2.188607 0.3676471
## 1156 0.19 -0.23 1.752142 0.2724796
## 1157 -1.69 -0.98 2.224860 0.5291005
## 1158 -0.02 -0.99 1.811077 0.5555556
## 1159 1.86 -2.05 1.183216 0.4761905
## 1160 0.75 1.07 1.584298 0.4032258
## 1161 -0.40 -0.52 1.913113 0.1636661
## 1162 -0.39 0.45 1.910497 0.3717472
## 1163 0.12 0.19 1.772005 0.2100840
## 1164 -1.02 -0.53 2.068816 0.5263158
## 1165 0.73 1.10 1.590597 0.3215434
## 1166 -0.15 -0.08 1.846619 0.4237288
## 1167 -1.06 0.06 2.078461 0.4081633
## 1168 1.74 1.07 1.232883 0.2247191
## 1169 -1.87 0.31 2.264950 0.4761905
## 1170 0.07 -2.15 1.786057 0.3436426
## 1171 0.41 0.55 1.688194 0.3039514
## 1172 -0.32 -0.19 1.892089 0.3984064
## 1173 1.70 0.14 1.249000 0.4310345
## 1174 -1.00 1.36 2.063977 0.4524887
## 1175 -2.81 1.44 2.463737 0.3215434
## 1176 -1.93 0.58 2.278157 0.5464481
## 1177 0.15 -0.70 1.763519 0.4830918
## 1178 -0.01 -0.20 1.808314 0.5154639
## 1179 0.93 -0.54 1.526434 0.2793296
## 1180 -0.45 0.68 1.926136 0.2666667
## 1181 -0.95 0.11 2.051828 0.2631579
## 1182 -2.21 0.29 2.338803 0.3086420
## 1183 0.07 0.40 1.786057 0.2293578
## 1184 1.12 -0.47 1.462874 0.2680965
## 1185 -0.17 1.11 1.852026 0.3355705
## 1186 1.47 -1.17 1.337909 0.3717472
## 1187 0.53 -0.95 1.652271 0.2801120
## 1188 -1.01 -1.00 2.066398 0.6172840
## 1189 0.56 -0.06 1.643168 0.4237288
## 1190 -1.62 -0.81 2.209072 0.5882353
## 1191 -1.07 -0.03 2.080865 0.2915452
## 1192 -0.34 -0.43 1.897367 0.3676471
## 1193 1.01 0.00 1.500000 0.4672897
## 1194 0.42 0.84 1.685230 0.3278689
## 1195 1.09 1.45 1.473092 0.1953125
## 1196 -0.14 0.33 1.843909 0.5102041
## 1197 0.37 -2.04 1.700000 0.3067485
## 1198 0.96 1.45 1.516575 0.3236246
## 1199 0.81 1.55 1.565248 0.4329004
## 1200 -0.24 -1.36 1.870829 0.4761905
## 1201 -1.31 0.33 2.137756 0.3533569
## 1202 0.00 1.71 1.805547 0.3436426
## 1203 -0.19 0.30 1.857418 0.5524862
## 1204 -0.59 0.89 1.962142 0.4310345
## 1205 1.63 -1.17 1.276715 0.3968254
## 1206 -1.12 0.87 2.092845 0.5102041
## 1207 0.24 -0.84 1.737815 0.2717391
## 1208 -0.11 0.07 1.835756 0.2732240
## 1209 -0.33 0.72 1.894730 0.5714286
## 1210 -1.31 -2.44 2.137756 0.4115226
## 1211 1.01 0.13 1.500000 0.2976190
## 1212 -1.38 0.34 2.154066 0.2873563
## 1213 0.20 -3.00 1.749286 0.6849315
## 1214 1.13 -0.95 1.459452 0.4878049
## 1215 0.91 0.78 1.532971 0.4366812
## 1216 0.15 -1.78 1.763519 0.2645503
## 1217 -0.58 0.50 1.959592 0.3367003
## 1218 0.36 -2.24 1.702939 0.3846154
## 1219 -0.94 0.70 2.049390 0.3205128
## 1220 0.90 1.12 1.536229 0.2538071
## 1221 0.60 -0.34 1.630951 0.3891051
## 1222 -0.89 -0.08 2.037155 0.5376344
## 1223 -2.81 1.44 2.463737 0.3215434
## 1224 0.06 0.96 1.788854 0.2212389
## 1225 0.61 0.18 1.627882 0.4255319
## 1226 -0.44 -0.70 1.923538 0.5494505
## 1227 -0.52 -0.32 1.944222 0.4201681
## 1228 0.09 0.72 1.780449 0.4739336
## 1229 -0.37 0.32 1.905256 0.3521127
## 1230 0.73 -2.03 1.590597 0.5405405
## 1231 0.02 -0.19 1.800000 0.5076142
## 1232 0.38 1.11 1.697056 0.5376344
## 1233 1.01 0.46 1.500000 0.4424779
## 1234 1.67 0.61 1.260952 0.4310345
## 1235 -0.85 0.67 2.027313 0.5434783
## 1236 -1.08 1.33 2.083267 0.4255319
## 1237 -0.80 0.56 2.014944 0.4545455
## 1238 -0.31 -1.66 1.889444 0.5681818
## 1239 0.38 -1.30 1.697056 0.2832861
## 1240 -0.08 0.79 1.827567 0.4424779
## 1241 0.29 -3.17 1.723369 0.1420455
## 1242 -1.10 -1.37 2.088061 0.2695418
## 1243 -0.03 0.17 1.813836 0.4081633
## 1244 1.34 0.06 1.385641 0.3745318
## 1245 -2.66 0.98 2.433105 0.2074689
## 1246 1.17 -0.42 1.445683 0.3021148
## 1247 0.96 1.17 1.516575 0.4098361
## 1248 1.62 -0.46 1.280625 0.4464286
## 1249 -0.11 1.05 1.835756 0.2150538
## 1250 -1.21 -0.94 2.114237 0.3003003
## 1251 1.02 1.50 1.496663 0.3636364
## 1252 -0.90 -0.40 2.039608 0.5780347
## 1253 2.05 0.42 1.100000 0.2183406
## 1254 0.55 0.29 1.646208 0.4484305
## 1255 -0.51 1.00 1.941649 0.1915709
## 1256 -1.33 -1.88 2.142429 0.5649718
## 1257 -1.28 0.98 2.130728 0.5263158
## 1258 0.31 0.28 1.717556 0.2409639
## 1259 -0.11 -0.75 1.835756 0.2923977
## 1260 -0.01 -0.60 1.808314 0.4237288
## 1261 -0.23 0.20 1.868154 0.4115226
## 1262 0.19 -0.07 1.752142 0.4975124
## 1263 0.86 0.28 1.549193 0.3003003
## 1264 0.75 0.89 1.584298 0.2066116
## 1265 -1.36 0.47 2.149419 0.4273504
## 1266 0.57 0.38 1.640122 0.3831418
## 1267 -0.98 -0.95 2.059126 0.6172840
## 1268 0.36 -0.63 1.702939 0.2570694
## 1269 -1.78 -0.58 2.244994 0.5464481
## 1270 1.04 0.21 1.489966 0.3676471
## 1271 1.73 0.51 1.236932 0.3649635
## 1272 -1.53 -0.81 2.188607 0.5847953
## 1273 -0.82 0.84 2.019901 0.5181347
## 1274 0.90 1.19 1.536229 0.4166667
## 1275 -0.05 1.20 1.819341 0.4566210
## 1276 0.05 -0.31 1.791647 0.4032258
## 1277 -1.35 0.40 2.147091 0.4405286
## 1278 -1.76 0.48 2.240536 0.2551020
## 1279 -0.43 0.69 1.920937 0.3472222
## 1280 1.10 -1.06 1.469694 0.4484305
## 1281 0.70 0.61 1.600000 0.3225806
## 1282 1.16 -0.47 1.449138 0.4464286
## 1283 0.93 0.63 1.526434 0.4048583
## 1284 -0.86 0.95 2.029778 0.3344482
## 1285 1.13 0.40 1.459452 0.2762431
## 1286 -0.68 0.94 1.984943 0.5128205
## 1287 1.13 0.79 1.459452 0.4184100
## 1288 -0.73 0.77 1.997498 0.4166667
## 1289 -0.11 -0.94 1.835756 0.1858736
## 1290 -0.28 -0.67 1.881489 0.5154639
## 1291 -0.43 -3.17 1.920937 0.6060606
## 1292 1.21 -0.55 1.431782 0.2932551
## 1293 -0.34 -0.79 1.897367 0.4901961
## 1294 1.13 -0.02 1.459452 0.4587156
## 1295 -0.29 0.13 1.884144 0.3378378
## 1296 0.01 0.10 1.802776 0.2793296
## 1297 -0.64 0.70 1.974842 0.5208333
## 1298 1.18 -0.40 1.442221 0.4504505
## 1299 1.03 -0.16 1.493318 0.4545455
## 1300 0.72 -0.16 1.593738 0.4761905
## 1301 0.59 0.71 1.634013 0.3300330
## 1302 -0.19 1.21 1.857418 0.4739336
## 1303 -0.88 -1.73 2.034699 0.4032258
## 1304 0.84 1.00 1.555635 0.4149378
## 1305 -3.02 -0.85 2.505993 0.7462687
## 1306 0.62 -0.88 1.624808 0.4854369
## 1307 0.47 0.52 1.670329 0.3937008
## 1308 1.08 0.69 1.476482 0.2293578
## 1309 -0.40 0.96 1.913113 0.4098361
## 1310 -0.16 0.51 1.849324 0.3558719
## 1311 0.42 1.02 1.685230 0.1453488
## 1312 1.67 -1.39 1.260952 0.3067485
## 1313 0.71 -0.36 1.596872 0.4739336
## 1314 0.87 -0.08 1.545962 0.4587156
## 1315 0.04 1.45 1.794436 0.4651163
## 1316 0.18 -0.36 1.754993 0.4716981
## 1317 -0.74 0.90 2.000000 0.4761905
## 1318 0.01 -0.33 1.802776 0.1923077
## 1319 0.50 -0.20 1.661325 0.4950495
## 1320 0.28 0.70 1.726268 0.4739336
## 1321 1.47 0.65 1.337909 0.4291845
## 1322 1.14 0.97 1.456022 0.2331002
## 1323 -0.50 1.15 1.939072 0.2450980
## 1324 -0.96 -2.46 2.054264 0.7874016
## 1325 -1.00 -0.39 2.063977 0.5524862
## 1326 -1.44 1.52 2.167948 0.2551020
## 1327 -0.66 1.14 1.979899 0.5000000
## 1328 1.03 0.63 1.493318 0.2252252
## 1329 1.71 -0.01 1.244990 0.2525253
## 1330 -0.65 0.74 1.977372 0.4201681
## 1331 0.06 -0.25 1.788854 0.5076142
## 1332 0.97 -2.54 1.513275 0.4115226
## 1333 1.21 1.03 1.431782 0.2298851
## 1334 -0.66 -2.50 1.979899 0.2890173
## 1335 -1.58 -1.73 2.200000 0.3215434
## 1336 -4.23 -0.62 2.736786 0.2053388
## 1337 0.97 1.00 1.513275 0.4048583
## 1338 0.32 0.63 1.714643 0.4424779
## 1339 -0.16 0.71 1.849324 0.1497006
## 1340 -0.11 -0.06 1.835756 0.2732240
## 1341 -0.69 -2.11 1.987461 0.2617801
## 1342 -1.00 0.67 2.063977 0.4149378
## 1343 -0.25 -1.40 1.873499 0.4566210
## 1344 -0.12 1.67 1.838478 0.3571429
## 1345 -0.85 -2.16 2.027313 0.5917160
## 1346 1.72 -1.74 1.240967 0.4830918
## 1347 0.51 0.15 1.658312 0.3906250
## 1348 0.83 0.07 1.558846 0.2577320
## 1349 -0.07 -0.19 1.824829 0.5524862
## 1350 0.44 0.77 1.679286 0.2659574
## 1351 1.01 -0.57 1.500000 0.4366812
## 1352 0.00 -0.41 1.805547 0.2624672
## 1353 -0.25 -0.93 1.873499 0.2873563
## 1354 -0.26 0.84 1.876166 0.4761905
## 1355 -0.56 -1.04 1.954482 0.4149378
## 1356 1.01 -0.45 1.500000 0.2702703
## 1357 1.09 0.89 1.473092 0.4201681
## 1358 -0.93 -0.03 2.046949 0.4545455
## 1359 -0.73 -0.62 1.997498 0.2004008
## 1360 1.83 -0.16 1.195826 0.3030303
## 1361 -0.69 -0.04 1.987461 0.4166667
## 1362 0.72 -0.80 1.593738 0.2985075
## 1363 0.77 -1.41 1.577973 0.3246753
## 1364 1.03 1.19 1.493318 0.4566210
## 1365 1.48 0.91 1.334166 0.4291845
## 1366 -2.55 0.93 2.410394 0.4672897
## 1367 -1.73 0.15 2.233831 0.4504505
## 1368 0.20 -2.30 1.749286 0.5555556
## 1369 -1.38 1.37 2.154066 0.2293578
## 1370 -1.81 0.80 2.251666 0.5617978
## 1371 -1.00 -0.57 2.063977 0.2747253
## 1372 -0.46 -0.02 1.928730 0.2717391
## 1373 -0.94 0.43 2.049390 0.2777778
## 1374 1.08 -0.43 1.476482 0.4694836
## 1375 0.58 0.28 1.637071 0.4608295
## 1376 -1.84 -0.26 2.258318 0.2049180
## 1377 -0.08 0.64 1.827567 0.2688172
## 1378 -0.40 0.98 1.913113 0.3424658
## 1379 -0.58 1.09 1.959592 0.3831418
## 1380 -1.48 0.82 2.177154 0.5050505
## 1381 -4.12 0.41 2.716616 0.1739130
## 1382 -0.05 -1.60 1.819341 0.2192982
## 1383 0.67 -0.85 1.609348 0.1915709
## 1384 2.00 1.02 1.122497 0.2079002
## 1385 0.96 1.17 1.516575 0.4098361
## 1386 0.59 0.99 1.634013 0.3831418
## 1387 1.13 -1.78 1.459452 0.2150538
## 1388 -0.26 1.17 1.876166 0.2710027
## 1389 1.42 -0.16 1.356466 0.4424779
## 1390 0.43 1.01 1.682260 0.2577320
## 1391 0.06 -0.66 1.788854 0.2688172
## 1392 -0.96 -1.13 2.054264 0.2597403
## 1393 -0.86 -2.15 2.029778 0.3076923
## 1394 0.39 0.08 1.694107 0.2762431
## 1395 -3.23 0.43 2.547548 0.2832861
## 1396 0.09 -2.71 1.780449 0.3472222
## 1397 -0.99 0.39 2.061553 0.2551020
## 1398 1.44 -0.77 1.349074 0.2525253
## 1399 -0.65 0.35 1.977372 0.2531646
## 1400 0.94 0.79 1.523155 0.4255319
## 1401 0.60 1.82 1.630951 0.2865330
## 1402 0.22 -0.02 1.743560 0.3636364
## 1403 0.57 0.89 1.640122 0.3496503
## 1404 -0.48 1.06 1.933908 0.2631579
## 1405 -0.72 -1.24 1.994994 0.2481390
## 1406 -0.63 0.53 1.972308 0.4566210
## 1407 0.22 1.23 1.743560 0.3802281
## 1408 0.91 -0.49 1.532971 0.1862197
## 1409 0.18 0.49 1.754993 0.2793296
## 1410 0.20 0.06 1.749286 0.2824859
## 1411 0.28 -0.38 1.726268 0.4807692
## 1412 -1.07 0.92 2.080865 0.3508772
## 1413 1.61 0.89 1.284523 0.3610108
## 1414 0.16 -0.41 1.760682 0.3125000
## 1415 -1.11 1.43 2.090454 0.5208333
## 1416 0.59 -0.31 1.634013 0.2096436
## 1417 1.69 -3.13 1.252996 0.5780347
## 1418 -1.01 -0.57 2.066398 0.5319149
## 1419 0.24 0.25 1.737815 0.3236246
## 1420 -0.16 1.01 1.849324 0.3984064
## 1421 -0.16 -1.58 1.849324 0.2421308
## 1422 -0.01 -0.06 1.808314 0.4273504
## 1423 -0.01 -0.41 1.808314 0.4629630
## 1424 0.73 0.09 1.590597 0.4524887
## 1425 0.25 -1.64 1.734935 0.2551020
## 1426 0.65 -2.28 1.615549 0.5291005
## 1427 0.18 0.04 1.754993 0.2631579
## 1428 1.28 0.29 1.407125 0.4166667
## 1429 0.33 0.37 1.711724 0.4672897
## 1430 -0.59 0.20 1.962142 0.2132196
## 1431 0.15 0.15 1.763519 0.2506266
## 1432 0.75 0.30 1.584298 0.3086420
## 1433 0.41 -0.52 1.688194 0.4048583
## 1434 0.69 -0.47 1.603122 0.3184713
## 1435 1.43 -0.81 1.352775 0.3952569
## 1436 1.33 -1.79 1.389244 0.1811594
## 1437 0.26 -0.29 1.732051 0.2100840
## 1438 1.11 -0.09 1.466288 0.3731343
## 1439 0.96 0.57 1.516575 0.3003003
## 1440 0.07 -0.21 1.786057 0.3184713
## 1441 -0.10 -2.00 1.833030 0.2915452
## 1442 -0.62 -1.56 1.969772 0.3731343
## 1443 -0.77 0.88 2.007486 0.3205128
## 1444 0.78 -0.63 1.574802 0.4255319
## 1445 -1.35 0.87 2.147091 0.5181347
## 1446 0.19 1.15 1.752142 0.3144654
## 1447 -0.89 -0.22 2.037155 0.2053388
## 1448 -1.08 -1.96 2.083267 0.3086420
## 1449 1.12 0.34 1.462874 0.2673797
## 1450 0.44 1.39 1.679286 0.3095975
## 1451 1.24 0.46 1.421267 0.3690037
## 1452 -1.81 -2.06 2.251666 0.3144654
## 1453 -0.32 -2.22 1.892089 0.3003003
## 1454 -4.13 0.52 2.718455 0.7407407
## 1455 -0.11 -0.99 1.835756 0.5076142
## 1456 1.08 0.81 1.476482 0.2652520
## 1457 -0.67 0.34 1.982423 0.4405286
## 1458 0.13 0.49 1.769181 0.2754821
## 1459 1.53 1.38 1.315295 0.4366812
## 1460 -1.23 0.35 2.118962 0.4784689
## 1461 0.63 -1.06 1.621727 0.2433090
## 1462 1.61 0.00 1.284523 0.2392344
## 1463 -0.33 0.61 1.894730 0.4405286
## 1464 -0.04 -0.31 1.816590 0.3021148
## 1465 1.17 -0.17 1.445683 0.4385965
## 1466 -0.60 0.43 1.964688 0.4878049
## 1467 0.91 -0.76 1.532971 0.3861004
## 1468 0.73 -0.75 1.590597 0.2298851
## 1469 -0.40 -0.01 1.913113 0.2732240
## 1470 1.25 -1.30 1.417745 0.4784689
## 1471 -0.20 -0.44 1.860108 0.3623188
## 1472 0.49 -0.14 1.664332 0.4608295
## 1473 -0.23 0.58 1.868154 0.4048583
## 1474 0.86 -1.00 1.549193 0.4132231
## 1475 -0.55 0.35 1.951922 0.4048583
## 1476 -1.93 -1.83 2.278157 0.5780347
## 1477 -0.23 1.09 1.868154 0.3968254
## 1478 -0.10 0.25 1.833030 0.5102041
## 1479 -0.04 0.38 1.816590 0.4405286
## 1480 -0.17 1.12 1.852026 0.2631579
## 1481 1.36 1.04 1.378405 0.3521127
## 1482 0.47 0.02 1.670329 0.5128205
## 1483 -0.54 -1.44 1.949359 0.5181347
## 1484 -1.69 -0.77 2.224860 0.1953125
## 1485 -0.71 -0.51 1.992486 0.4081633
## 1486 1.27 -1.08 1.410674 0.2518892
## 1487 -0.03 1.07 1.813836 0.4065041
## 1488 0.69 1.05 1.603122 0.4444444
## 1489 1.18 0.85 1.442221 0.4219409
## 1490 -0.62 0.62 1.969772 0.4329004
## 1491 1.37 0.09 1.374773 0.4484305
## 1492 -0.60 1.31 1.964688 0.1841621
## 1493 -0.08 1.66 1.827567 0.4065041
## 1494 -1.74 1.41 2.236068 0.2169197
## 1495 1.23 0.44 1.424781 0.4255319
## 1496 1.33 1.15 1.389244 0.4048583
## 1497 -0.08 0.02 1.827567 0.2638522
## 1498 -0.04 1.11 1.816590 0.3952569
## 1499 -0.19 0.76 1.857418 0.4694836
## 1500 -0.52 -1.17 1.944222 0.3496503
## 1501 -0.98 0.38 2.059126 0.2793296
## 1502 -0.34 -0.03 1.897367 0.3095975
## 1503 0.20 0.53 1.749286 0.2645503
## 1504 1.87 -0.01 1.178983 0.4385965
## 1505 0.83 0.10 1.558846 0.4484305
## 1506 1.24 0.27 1.421267 0.4405286
## 1507 -0.38 0.75 1.907878 0.4504505
## 1508 -0.66 -1.05 1.979899 0.5847953
## 1509 0.03 -1.77 1.797220 0.2314815
## 1510 -0.48 0.25 1.933908 0.4098361
## 1511 0.22 0.99 1.743560 0.4366812
## 1512 0.86 0.80 1.549193 0.4629630
## 1513 -0.86 1.07 2.029778 0.4219409
## 1514 1.16 -0.02 1.449138 0.4424779
## 1515 -0.92 -0.27 2.044505 0.4016064
## 1516 -1.86 0.22 2.262742 0.5952381
## 1517 1.17 0.09 1.445683 0.2044990
## 1518 -0.91 0.13 2.042058 0.2570694
## 1519 -0.89 -1.69 2.037155 0.5376344
## 1520 1.20 -0.20 1.435270 0.2331002
## 1521 -0.18 -1.01 1.854724 0.5050505
## 1522 0.09 -0.18 1.780449 0.4672897
## 1523 0.97 -1.26 1.513275 0.4484305
## 1524 -1.04 0.55 2.073644 0.4329004
## 1525 -0.22 0.03 1.865476 0.4975124
## 1526 0.05 -1.56 1.791647 0.5208333
## 1527 1.32 -1.04 1.392839 0.3039514
## 1528 0.72 -2.63 1.593738 0.5649718
## 1529 -0.85 0.00 2.027313 0.3300330
## 1530 -0.13 0.17 1.841195 0.5000000
## 1531 0.35 2.05 1.705872 0.4901961
## 1532 -0.74 0.85 2.000000 0.4184100
## 1533 0.03 -0.75 1.797220 0.3773585
## 1534 -1.08 0.91 2.083267 0.3831418
## 1535 1.14 0.86 1.456022 0.3205128
## 1536 1.37 0.90 1.374773 0.3773585
## 1537 0.73 -1.34 1.590597 0.5128205
## 1538 1.30 0.99 1.400000 0.4405286
## 1539 0.49 -1.68 1.664332 0.5102041
## 1540 0.43 -0.09 1.682260 0.3003003
## 1541 -0.33 -2.28 1.894730 0.6535948
## 1542 1.55 -0.45 1.307670 0.4566210
## 1543 0.40 -0.83 1.691153 0.4424779
## 1544 0.71 0.86 1.596872 0.3184713
## 1545 0.41 -1.00 1.688194 0.4524887
## 1546 -0.66 -1.54 1.979899 0.2898551
## 1547 0.86 -3.53 1.549193 0.2421308
## 1548 -1.09 1.20 2.085665 0.4273504
## 1549 -1.84 -0.40 2.258318 0.2044990
## 1550 -0.27 0.60 1.878829 0.2739726
## 1551 -0.66 1.15 1.979899 0.5586592
## 1552 -0.02 1.30 1.811077 0.3289474
## 1553 0.43 0.86 1.682260 0.3257329
## 1554 0.24 0.72 1.737815 0.2688172
## 1555 0.16 -0.17 1.760682 0.2732240
## 1556 0.88 0.45 1.542725 0.3610108
## 1557 1.80 -0.20 1.208305 0.2801120
## 1558 -1.96 0.90 2.284732 0.2341920
## 1559 0.78 0.02 1.574802 0.2341920
## 1560 -0.68 -1.20 1.984943 0.4273504
## 1561 -1.50 1.77 2.181742 0.4608295
## 1562 -2.14 -0.58 2.323790 0.4237288
## 1563 -1.23 -2.15 2.118962 0.6802721
## 1564 0.85 -0.21 1.552417 0.1763668
## 1565 -1.51 1.44 2.184033 0.5076142
## 1566 -0.71 0.95 1.992486 0.2702703
## 1567 1.05 -3.37 1.486607 0.2000000
## 1568 -0.39 -0.78 1.910497 0.2949853
## 1569 -0.43 0.96 1.920937 0.4807692
## 1570 -1.51 -2.32 2.184033 0.3649635
## 1571 -2.23 -0.35 2.343075 0.2531646
## 1572 -0.70 0.43 1.989975 0.4219409
## 1573 0.13 -0.58 1.769181 0.2564103
## 1574 0.21 0.14 1.746425 0.2079002
## 1575 -0.52 -0.01 1.944222 0.2890173
## 1576 -1.10 -0.07 2.088061 0.2941176
## 1577 1.23 1.19 1.424781 0.4366812
## 1578 0.68 -0.24 1.606238 0.5263158
## 1579 -1.29 0.11 2.133073 0.3636364
## 1580 0.56 0.57 1.643168 0.1597444
## 1581 0.14 -0.57 1.766352 0.3584229
## 1582 1.36 -2.06 1.378405 0.3344482
## 1583 -1.36 -1.03 2.149419 0.2985075
## 1584 -1.61 0.18 2.206808 0.4149378
## 1585 -0.89 0.84 2.037155 0.5524862
## 1586 -4.73 -2.28 2.826659 0.1375516
## 1587 0.10 -0.53 1.777639 0.3086420
## 1588 0.19 -0.29 1.752142 0.3030303
## 1589 0.79 -0.69 1.571623 0.2092050
## 1590 0.65 -1.56 1.615549 0.5714286
## 1591 1.59 -0.06 1.292285 0.2105263
## 1592 1.64 -0.52 1.272792 0.4524887
## 1593 0.78 1.28 1.574802 0.4098361
## 1594 0.60 -0.02 1.630951 0.3861004
## 1595 -0.19 -2.52 1.857418 0.5586592
## 1596 -0.03 -0.84 1.813836 0.5617978
## 1597 0.21 -0.26 1.746425 0.5050505
## 1598 0.59 -0.96 1.634013 0.5494505
## 1599 0.63 0.37 1.621727 0.4975124
## 1600 -1.14 -0.64 2.097618 0.4854369
## 1601 -1.36 1.11 2.149419 0.4830918
## 1602 -0.36 -0.99 1.902630 0.3937008
## 1603 -0.02 -0.61 1.811077 0.5681818
## 1604 -0.13 -1.15 1.841195 0.3311258
## 1605 0.77 0.74 1.577973 0.4219409
## 1606 0.98 -3.22 1.509967 0.5263158
## 1607 0.04 -1.85 1.794436 0.5747126
## 1608 -0.23 -0.99 1.868154 0.5555556
## 1609 -1.39 1.39 2.156386 0.3533569
## 1610 -0.73 0.32 1.997498 0.5000000
## 1611 -2.41 -1.25 2.381176 0.2304147
## 1612 -0.71 -1.58 1.992486 0.6060606
## 1613 0.13 -0.99 1.769181 0.3787879
## 1614 -0.61 0.48 1.967232 0.3745318
## 1615 -1.31 -0.33 2.137756 0.3623188
## 1616 0.60 -0.98 1.630951 0.5128205
## 1617 1.01 0.50 1.500000 0.4347826
## 1618 -1.14 -0.11 2.097618 0.5208333
## 1619 -0.31 0.61 1.889444 0.4566210
## 1620 1.73 -1.89 1.236932 0.4807692
## 1621 -0.55 -0.20 1.951922 0.2083333
## 1622 0.03 0.39 1.797220 0.4444444
## 1623 1.04 1.00 1.489966 0.4098361
## 1624 -1.36 -1.29 2.149419 0.3717472
## 1625 -0.98 2.14 2.059126 0.1451379
## 1626 -0.58 0.88 1.959592 0.5025126
## 1627 -0.61 -1.04 1.967232 0.6024096
## 1628 -1.42 0.91 2.163331 0.5235602
## 1629 0.05 -1.83 1.791647 0.1872659
## 1630 0.42 0.79 1.685230 0.3521127
## 1631 -0.58 -0.03 1.959592 0.5405405
## 1632 -0.11 1.56 1.835756 0.4016064
## 1633 -2.39 -0.04 2.376973 0.3875969
## 1634 -0.91 -2.28 2.042058 0.6250000
## 1635 -0.80 -0.13 2.014944 0.5952381
## 1636 -0.70 -0.66 1.989975 0.5376344
## 1637 1.17 0.40 1.445683 0.2824859
## 1638 0.09 1.14 1.780449 0.4545455
## 1639 0.90 -2.26 1.536229 0.2666667
## 1640 0.74 -0.75 1.587451 0.5649718
## 1641 1.52 0.37 1.319091 0.4184100
## 1642 0.14 0.38 1.766352 0.3731343
## 1643 0.17 0.25 1.757840 0.4672897
## 1644 0.46 -1.15 1.673320 0.3144654
## 1645 -1.62 -1.32 2.209072 0.3663004
## 1646 0.44 -0.45 1.679286 0.3003003
## 1647 0.93 0.63 1.526434 0.4048583
## 1648 -0.73 -1.33 1.997498 0.2036660
## 1649 0.31 -1.03 1.717556 0.4132231
## 1650 0.20 -2.27 1.749286 0.2583979
## 1651 -0.57 -0.01 1.957039 0.4366812
## 1652 1.41 0.79 1.360147 0.4237288
## 1653 0.35 0.32 1.705872 0.4739336
## 1654 -2.43 0.85 2.385372 0.6211180
## 1655 0.99 0.95 1.506652 0.4081633
## 1656 -1.64 0.66 2.213594 0.5076142
## 1657 -1.67 -0.21 2.220360 0.2457002
## 1658 0.28 -0.28 1.726268 0.3021148
## 1659 0.12 -1.05 1.772005 0.4201681
## 1660 -0.68 -0.70 1.984943 0.3289474
## 1661 -1.91 -1.38 2.273763 0.4149378
## 1662 -1.57 -2.19 2.197726 0.3597122
## 1663 0.12 0.24 1.772005 0.4716981
## 1664 -0.57 0.10 1.957039 0.5102041
## 1665 -0.27 -0.08 1.878829 0.4901961
## 1666 -0.05 -2.12 1.819341 0.5882353
## 1667 0.10 -0.86 1.777639 0.5494505
## 1668 -1.13 -1.01 2.095233 0.5847953
## 1669 -2.74 -0.42 2.449490 0.1976285
## 1670 -0.21 -0.05 1.862794 0.4830918
## 1671 0.28 0.32 1.726268 0.4032258
## 1672 -1.71 -0.49 2.229350 0.6250000
## 1673 0.02 -0.10 1.800000 0.2873563
## 1674 -0.62 1.32 1.969772 0.3649635
## 1675 0.06 -0.23 1.788854 0.4926108
## 1676 0.23 -1.18 1.740690 0.2785515
## 1677 -2.67 2.26 2.435159 0.4184100
## 1678 0.18 0.72 1.754993 0.4672897
## 1679 -0.48 0.82 1.933908 0.2364066
## 1680 0.32 0.63 1.714643 0.4424779
## 1681 -1.03 -0.83 2.071232 0.3095975
## 1682 1.18 -0.10 1.442221 0.3257329
## 1683 0.69 -1.23 1.603122 0.5524862
## 1684 1.44 -2.33 1.349074 0.3952569
## 1685 -0.62 -0.07 1.969772 0.4444444
## 1686 0.30 1.41 1.720465 0.4651163
## 1687 -1.54 -0.85 2.190890 0.1773050
## 1688 -0.57 -0.36 1.957039 0.5464481
## 1689 0.93 0.63 1.526434 0.4048583
## 1690 -0.17 -0.08 1.852026 0.2747253
## 1691 -0.20 0.52 1.860108 0.4651163
## 1692 0.89 0.27 1.539480 0.2493766
## 1693 0.52 0.08 1.655295 0.4273504
## 1694 0.25 -1.73 1.734935 0.5847953
## 1695 1.36 0.74 1.378405 0.4219409
## 1696 -1.35 0.50 2.147091 0.3558719
## 1697 0.86 0.64 1.549193 0.4132231
## 1698 1.15 -0.75 1.452584 0.3921569
## 1699 0.96 1.17 1.516575 0.4098361
## 1700 0.49 -1.55 1.664332 0.3663004
## 1701 0.95 -0.05 1.519868 0.2898551
## 1702 0.13 0.68 1.769181 0.1879699
## 1703 -0.28 0.22 1.881489 0.5181347
## 1704 -0.44 0.39 1.923538 0.2732240
## 1705 0.43 -1.44 1.682260 0.4310345
## 1706 -1.64 -0.53 2.213594 0.2666667
## 1707 -0.44 0.39 1.923538 0.2732240
## 1708 1.35 0.61 1.382027 0.4201681
## 1709 -0.68 -0.63 1.984943 0.2976190
## 1710 1.71 1.28 1.244990 0.4347826
## 1711 -0.02 0.37 1.811077 0.2433090
## 1712 -1.14 -0.77 2.097618 0.4761905
## 1713 0.28 1.22 1.726268 0.2525253
## 1714 -0.28 -1.01 1.881489 0.2849003
## 1715 1.14 -1.75 1.456022 0.4716981
## 1716 -2.74 -2.05 2.449490 0.2380952
## 1717 1.89 1.16 1.170470 0.2320186
## 1718 -0.62 0.10 1.969772 0.4016064
## 1719 0.26 -0.04 1.732051 0.2666667
## 1720 -0.41 0.13 1.915724 0.2762431
## 1721 -0.02 0.20 1.811077 0.4065041
## 1722 0.80 -1.42 1.568439 0.2277904
## 1723 -0.88 0.95 2.034699 0.5128205
## 1724 -1.75 -0.88 2.238303 0.3546099
## 1725 -0.82 -1.61 2.019901 0.2816901
## 1726 0.12 0.80 1.772005 0.3267974
## 1727 -1.10 0.37 2.088061 0.1225490
## 1728 -0.84 -0.23 2.024846 0.4273504
## 1729 0.26 -0.51 1.732051 0.3891051
## 1730 -1.22 -0.13 2.116601 0.5524862
## 1731 -0.11 0.88 1.835756 0.4672897
## 1732 1.43 -1.18 1.352775 0.3076923
## 1733 0.92 -0.07 1.529706 0.4464286
## 1734 -1.28 -1.98 2.130728 0.5681818
## 1735 0.36 0.59 1.702939 0.2849003
## 1736 0.60 0.55 1.630951 0.2309469
## 1737 0.37 0.82 1.700000 0.2590674
## 1738 1.13 0.38 1.459452 0.4219409
## 1739 -0.87 1.22 2.032240 0.5494505
## 1740 0.85 -1.28 1.552417 0.4878049
## 1741 -0.45 0.25 1.926136 0.2724796
## 1742 -1.77 -0.52 2.242766 0.6666667
## 1743 1.21 0.13 1.431782 0.4716981
## 1744 1.35 -0.32 1.382027 0.4444444
## 1745 0.62 -1.25 1.624808 0.5025126
## 1746 -0.52 -1.33 1.944222 0.5263158
## 1747 -1.19 -0.17 2.109502 0.5405405
## 1748 -0.30 0.42 1.886796 0.4608295
## 1749 -1.41 0.97 2.161018 0.4901961
## 1750 -0.29 -0.46 1.884144 0.3184713
## 1751 0.79 0.48 1.571623 0.2036660
## 1752 -0.76 1.25 2.004994 0.2724796
## 1753 0.43 0.00 1.682260 0.4524887
## 1754 -1.25 -2.52 2.123676 0.1773050
## 1755 -0.66 -1.08 1.979899 0.2985075
## 1756 -0.27 -0.39 1.878829 0.2949853
## 1757 -0.34 0.34 1.897367 0.4784689
## 1758 2.11 -0.92 1.072381 0.3267974
## 1759 0.18 -0.82 1.754993 0.4975124
## 1760 -1.76 0.53 2.240536 0.5434783
## 1761 1.38 -1.97 1.371131 0.4166667
## 1762 -0.71 -0.65 1.992486 0.5434783
## 1763 1.53 -0.70 1.315295 0.4347826
## 1764 -0.33 0.38 1.894730 0.4065041
## 1765 -0.74 0.20 2.000000 0.5208333
## 1766 -0.64 1.18 1.974842 0.1736111
## 1767 -0.13 0.05 1.841195 0.3367003
## 1768 0.30 -1.04 1.720465 0.4385965
## 1769 -0.86 0.97 2.029778 0.2793296
## 1770 1.11 -0.83 1.466288 0.3731343
## 1771 0.02 -0.53 1.800000 0.3623188
## 1772 -0.12 -0.75 1.838478 0.4484305
## 1773 0.49 -0.30 1.664332 0.4716981
## 1774 -1.18 -0.33 2.107131 0.5434783
## 1775 0.21 0.59 1.746425 0.4504505
## 1776 -0.18 -0.82 1.854724 0.2237136
## 1777 0.97 0.77 1.513275 0.4065041
## 1778 -0.81 -0.43 2.017424 0.2145923
## 1779 -1.63 -0.42 2.211334 0.2645503
## 1780 -1.52 -0.92 2.186321 0.3472222
## 1781 -0.48 -1.16 1.933908 0.5813953
## 1782 0.97 -2.05 1.513275 0.5025126
## 1783 0.42 0.24 1.685230 0.3389831
## 1784 -0.61 -0.11 1.967232 0.4901961
## 1785 0.14 -0.57 1.766352 0.3205128
## 1786 1.18 0.52 1.442221 0.4115226
## 1787 -1.25 -0.76 2.123676 0.6097561
## 1788 -0.86 0.39 2.029778 0.5128205
## 1789 0.93 0.63 1.526434 0.4048583
## 1790 0.00 -0.14 1.805547 0.4901961
## 1791 -1.75 -0.43 2.238303 0.2444988
## 1792 -1.96 -1.11 2.284732 0.6134969
## 1793 1.64 -2.40 1.272792 0.4807692
## 1794 -0.62 0.61 1.969772 0.4048583
## 1795 1.39 -1.89 1.367479 0.5128205
## 1796 0.44 -1.40 1.679286 0.3164557
## 1797 0.22 -1.27 1.743560 0.2747253
## 1798 -1.60 -0.98 2.204541 0.2192982
## 1799 0.31 -1.38 1.717556 0.5181347
## 1800 -2.17 1.69 2.330236 0.4484305
## 1801 -0.05 -0.28 1.819341 0.4784689
## 1802 0.04 0.26 1.794436 0.4291845
## 1803 -0.45 -0.15 1.926136 0.5434783
## 1804 0.55 -0.45 1.646208 0.3745318
## 1805 0.10 -1.22 1.777639 0.2808989
## 1806 -2.26 0.60 2.349468 0.2024291
## 1807 -0.54 0.54 1.949359 0.3861004
## 1808 -1.49 -1.15 2.179449 0.6802721
## 1809 1.08 -1.15 1.476482 0.4716981
## 1810 -3.44 0.37 2.588436 0.2873563
## 1811 -0.83 0.21 2.022375 0.5555556
## 1812 0.38 -1.13 1.697056 0.5154639
## 1813 1.13 -0.09 1.459452 0.4385965
## 1814 -0.07 1.11 1.824829 0.4878049
## 1815 -0.02 0.67 1.811077 0.2457002
## 1816 0.92 -0.61 1.529706 0.4651163
## 1817 -1.26 0.65 2.126029 0.4405286
## 1818 -0.12 -1.88 1.838478 0.2985075
## 1819 -0.08 0.00 1.827567 0.4016064
## 1820 -1.06 -1.93 2.078461 0.3984064
## 1821 1.35 -0.49 1.382027 0.3610108
## 1822 -0.65 -1.06 1.977372 0.4424779
## 1823 1.29 -2.28 1.403567 0.5025126
## 1824 -0.60 -0.73 1.964688 0.5291005
## 1825 1.93 -0.68 1.153256 0.3802281
## 1826 0.74 0.63 1.587451 0.4115226
## 1827 0.29 1.38 1.723369 0.3154574
## 1828 -1.09 0.46 2.085665 0.4504505
## 1829 -0.39 0.79 1.910497 0.4545455
## 1830 0.22 -1.07 1.743560 0.3289474
## 1831 -0.50 -1.17 1.939072 0.2257336
## 1832 -0.32 -1.22 1.892089 0.5882353
## 1833 1.37 -0.90 1.374773 0.4566210
## 1834 1.49 0.76 1.330413 0.3610108
## 1835 0.10 0.56 1.777639 0.3759398
## 1836 -0.41 0.66 1.915724 0.3134796
## 1837 1.24 0.06 1.421267 0.3649635
## 1838 1.28 0.12 1.407125 0.4464286
## 1839 -0.29 0.17 1.884144 0.4901961
## 1840 0.20 0.06 1.749286 0.2403846
## 1841 -0.10 -1.60 1.833030 0.3194888
## 1842 0.22 0.44 1.743560 0.4878049
## 1843 1.90 0.56 1.166190 0.4329004
## 1844 0.86 0.63 1.549193 0.4273504
## 1845 -0.34 0.85 1.897367 0.4672897
## 1846 1.00 -0.26 1.503330 0.4672897
## 1847 -0.43 -1.26 1.920937 0.2652520
## 1848 -0.29 0.52 1.884144 0.5291005
## 1849 -0.71 -1.58 1.992486 0.3367003
## 1850 1.40 0.86 1.363818 0.2702703
## 1851 -0.67 -1.32 1.982423 0.5780347
## 1852 -1.46 -0.59 2.172556 0.3952569
## 1853 -0.02 -1.57 1.811077 0.2770083
## 1854 1.95 1.16 1.144552 0.2525253
## 1855 -0.01 -0.68 1.808314 0.3267974
## 1856 0.78 -1.68 1.574802 0.3597122
## 1857 -1.40 -2.17 2.158703 0.2506266
## 1858 -1.02 -0.48 2.068816 0.2610966
## 1859 0.52 0.46 1.655295 0.4629630
## 1860 -2.78 1.09 2.457641 0.2008032
## 1861 1.39 -2.21 1.367479 0.4975124
## 1862 0.09 0.25 1.780449 0.4504505
## 1863 -0.77 -1.15 2.007486 0.5464481
## 1864 -1.48 -0.16 2.177154 0.4255319
## 1865 -0.53 -0.88 1.946792 0.5988024
## 1866 0.34 -0.41 1.708801 0.5235602
## 1867 0.42 -1.54 1.685230 0.5025126
## 1868 -1.85 -1.57 2.260531 0.6289308
## 1869 -0.49 0.62 1.936492 0.1706485
## 1870 -1.86 0.50 2.262742 0.5681818
## 1871 0.62 -0.01 1.624808 0.4255319
## 1872 0.05 0.37 1.791647 0.3484321
## 1873 -0.96 0.35 2.054264 0.5917160
## 1874 1.04 -1.86 1.489966 0.5025126
## 1875 0.60 0.01 1.630951 0.4098361
## 1876 -0.30 0.70 1.886796 0.3030303
## 1877 0.68 -0.62 1.606238 0.1773050
## 1878 1.31 0.46 1.396424 0.4385965
## 1879 -0.11 -0.92 1.835756 0.2824859
## 1880 0.61 0.66 1.627882 0.4566210
## 1881 -0.30 0.61 1.886796 0.2512563
## 1882 1.30 0.98 1.400000 0.2666667
## 1883 -0.61 -0.17 1.967232 0.5128205
## 1884 -0.28 -0.55 1.881489 0.3558719
## 1885 -0.16 -0.81 1.849324 0.2325581
## 1886 0.24 -0.19 1.737815 0.3484321
## 1887 0.03 -0.91 1.797220 0.5319149
## 1888 -0.90 0.30 2.039608 0.4504505
## 1889 0.66 -0.84 1.612452 0.4807692
## 1890 -3.30 1.36 2.561250 0.5988024
## 1891 0.92 -3.45 1.529706 0.4032258
## 1892 1.10 -1.83 1.469694 0.4629630
## 1893 -0.05 0.84 1.819341 0.2702703
## 1894 -0.51 0.17 1.941649 0.3267974
## 1895 0.16 -0.65 1.760682 0.5347594
## 1896 0.84 -0.35 1.555635 0.4329004
## 1897 -0.43 -0.30 1.920937 0.2958580
## 1898 -0.26 0.56 1.876166 0.4761905
## 1899 0.53 0.16 1.652271 0.2506266
## 1900 0.38 0.35 1.697056 0.4484305
## 1901 0.18 -0.14 1.754993 0.3717472
## 1902 0.07 -1.03 1.786057 0.5235602
## 1903 -0.23 0.32 1.868154 0.5050505
## 1904 0.00 1.20 1.805547 0.4424779
## 1905 0.55 -2.64 1.646208 0.2881844
## 1906 1.37 -0.80 1.374773 0.4444444
## 1907 0.26 -2.13 1.732051 0.3802281
## 1908 -1.02 -1.05 2.068816 0.5586592
## 1909 -0.64 0.24 1.974842 0.3484321
## 1910 0.46 -0.97 1.673320 0.5076142
## 1911 1.33 0.34 1.389244 0.4184100
## 1912 -0.54 -0.40 1.949359 0.4545455
## 1913 0.40 -0.65 1.691153 0.4132231
## 1914 -1.33 0.38 2.142429 0.5000000
## 1915 0.15 0.03 1.763519 0.4716981
## 1916 0.68 0.31 1.606238 0.4651163
## 1917 -1.75 0.58 2.238303 0.1996008
## 1918 0.38 0.67 1.697056 0.4830918
## 1919 0.40 0.23 1.691153 0.2320186
## 1920 1.04 -0.52 1.489966 0.2450980
## 1921 0.28 -1.40 1.726268 0.2364066
## 1922 -2.32 -1.41 2.362202 0.2717391
## 1923 0.27 0.00 1.729162 0.4132231
## 1924 -0.43 -0.75 1.920937 0.2898551
## 1925 0.66 -0.69 1.612452 0.4016064
## 1926 -0.45 -2.55 1.926136 0.6024096
## 1927 0.06 0.21 1.788854 0.3067485
## 1928 -0.25 1.51 1.873499 0.3125000
## 1929 -0.68 1.36 1.984943 0.4000000
## 1930 0.90 -0.79 1.536229 0.4761905
## 1931 -1.15 -0.22 2.100000 0.5376344
## 1932 0.11 -1.75 1.774824 0.5747126
## 1933 0.74 0.22 1.587451 0.4032258
## 1934 -2.21 -0.41 2.338803 0.5780347
## 1935 1.17 -0.97 1.445683 0.3300330
## 1936 -0.16 -0.86 1.849324 0.2624672
## 1937 -0.41 0.81 1.915724 0.4484305
## 1938 0.00 -3.18 1.805547 0.3649635
## mindfulness_trans if_autonomy if_accomplishment attitude_emph_num
## 1 1.462874 1 0 3
## 2 1.757840 1 1 4
## 3 1.640122 1 0 4
## 4 1.694107 1 1 3
## 5 1.500000 1 1 4
## 6 1.835756 1 1 3
## 7 1.421267 0 1 3
## 8 1.894730 0 0 1
## 9 1.307670 0 1 3
## 10 2.165641 0 0 2
## 11 1.714643 0 1 4
## 12 1.374773 0 0 3
## 13 1.552417 0 0 3
## 14 1.691153 1 1 4
## 15 2.135416 1 1 4
## 16 2.078461 1 1 3
## 17 1.763519 0 1 4
## 18 1.808314 0 0 1
## 19 1.843909 0 1 3
## 20 1.392839 0 0 1
## 21 1.846619 0 0 1
## 22 1.519868 1 0 3
## 23 1.326650 0 0 2
## 24 1.708801 1 0 2
## 25 2.347339 1 1 4
## 26 1.766352 0 1 3
## 27 1.640122 1 1 5
## 28 1.881489 0 1 3
## 29 2.092845 1 1 3
## 30 1.452584 1 0 3
## 31 2.366432 1 0 1
## 32 1.555635 1 0 2
## 33 2.158703 0 0 1
## 34 1.892089 1 0 2
## 35 2.313007 0 0 1
## 36 1.640122 0 1 4
## 37 1.979899 0 1 2
## 38 2.019901 1 1 4
## 39 1.697056 1 0 4
## 40 2.017424 0 0 2
## 41 2.059126 1 0 2
## 42 1.466288 0 0 2
## 43 2.317326 0 1 2
## 44 1.928730 1 0 3
## 45 2.140093 0 0 2
## 46 2.393742 0 0 2
## 47 1.732051 0 1 3
## 48 1.378405 0 0 2
## 49 1.754993 1 1 4
## 50 1.729162 1 0 4
## 51 1.516575 1 1 5
## 52 1.954482 0 1 2
## 53 1.723369 1 1 4
## 54 1.414214 1 1 3
## 55 2.083267 0 0 1
## 56 2.027313 0 0 2
## 57 1.473092 1 0 3
## 58 1.694107 1 0 2
## 59 1.523155 1 1 4
## 60 1.720465 1 1 4
## 61 1.931321 0 0 NA
## 62 1.977372 0 0 1
## 63 1.685230 1 0 4
## 64 1.673320 1 1 3
## 65 1.334166 0 0 2
## 66 1.345362 0 1 3
## 67 1.466288 1 0 4
## 68 1.700000 1 0 3
## 69 1.374773 0 0 2
## 70 1.987461 0 0 2
## 71 1.486607 1 1 4
## 72 1.936492 0 1 2
## 73 1.819341 1 1 5
## 74 2.209072 0 1 1
## 75 2.017424 1 0 3
## 76 1.811077 1 0 3
## 77 1.881489 1 1 2
## 78 2.144761 0 0 1
## 79 1.462874 1 1 3
## 80 1.987461 0 0 1
## 81 1.612452 1 0 3
## 82 1.615549 0 1 3
## 83 1.959592 1 0 1
## 84 1.655295 1 0 3
## 85 1.536229 1 0 3
## 86 1.679286 0 1 3
## 87 1.509967 0 1 3
## 88 1.740690 0 1 4
## 89 1.772005 1 0 2
## 90 2.080865 1 1 4
## 91 2.362202 1 0 2
## 92 1.526434 1 1 4
## 93 2.334524 1 1 4
## 94 1.822087 1 1 4
## 95 2.004994 0 1 1
## 96 1.746425 1 1 4
## 97 1.609348 1 0 3
## 98 1.969772 1 0 3
## 99 2.422808 0 1 1
## 100 1.640122 1 1 5
## 101 1.954482 1 0 3
## 102 1.854724 1 1 3
## 103 1.667333 0 1 2
## 104 1.939072 0 1 2
## 105 1.529706 0 0 2
## 106 1.702939 1 0 3
## 107 1.431782 0 0 2
## 108 1.646208 0 0 3
## 109 1.892089 0 0 NA
## 110 1.571623 1 1 4
## 111 1.389244 0 0 2
## 112 1.590597 1 0 3
## 113 1.496663 1 1 5
## 114 1.667333 1 0 4
## 115 2.085665 1 1 3
## 116 1.667333 1 0 3
## 117 2.253886 0 1 3
## 118 1.754993 0 1 3
## 119 1.542725 0 0 3
## 120 1.452584 0 0 2
## 121 1.723369 1 0 4
## 122 1.892089 1 1 2
## 123 1.780449 0 1 4
## 124 1.276715 0 1 4
## 125 1.697056 0 1 4
## 126 1.835756 1 0 1
## 127 2.295648 0 0 1
## 128 1.717556 0 1 2
## 129 1.788854 1 1 3
## 130 2.420744 0 0 NA
## 131 1.926136 0 0 1
## 132 2.406242 0 0 2
## 133 1.772005 1 1 4
## 134 2.291288 0 1 1
## 135 1.777639 0 0 2
## 136 1.734935 1 1 3
## 137 1.824829 0 0 1
## 138 2.109502 0 0 1
## 139 1.606238 0 0 2
## 140 2.071232 0 1 2
## 141 1.870829 1 0 1
## 142 1.854724 1 0 1
## 143 1.732051 0 0 2
## 144 1.697056 0 1 4
## 145 1.860108 1 0 2
## 146 1.788854 0 1 2
## 147 1.694107 1 0 3
## 148 1.509967 0 0 3
## 149 1.679286 1 0 4
## 150 1.516575 0 0 2
## 151 2.142429 1 1 4
## 152 2.017424 1 0 1
## 153 1.900000 0 1 1
## 154 1.500000 0 1 4
## 155 1.964688 1 0 3
## 156 1.982423 0 0 NA
## 157 1.757840 0 1 3
## 158 1.746425 0 1 3
## 159 1.819341 1 0 4
## 160 1.931321 1 0 2
## 161 1.549193 0 0 2
## 162 1.816590 0 0 3
## 163 1.854724 1 1 4
## 164 1.827567 0 0 NA
## 165 1.772005 0 1 4
## 166 1.655295 1 0 4
## 167 1.754993 1 1 4
## 168 1.714643 1 0 3
## 169 1.562050 1 1 5
## 170 1.486607 1 0 3
## 171 1.584298 1 1 4
## 172 1.593738 1 1 4
## 173 2.135416 0 0 2
## 174 1.523155 1 0 3
## 175 1.476482 1 1 4
## 176 1.260952 0 0 2
## 177 1.590597 1 0 4
## 178 2.046949 0 0 1
## 179 1.833030 0 0 2
## 180 1.766352 1 1 4
## 181 1.664332 1 0 2
## 182 1.382027 1 1 5
## 183 1.860108 1 0 2
## 184 1.244990 0 0 2
## 185 1.542725 1 0 4
## 186 1.797220 1 1 4
## 187 1.827567 0 0 1
## 188 1.967232 1 0 3
## 189 1.862794 1 1 3
## 190 1.918333 1 1 4
## 191 1.456022 1 1 3
## 192 1.757840 0 0 1
## 193 1.857418 0 0 2
## 194 1.889444 0 0 2
## 195 1.800000 0 0 3
## 196 1.732051 0 0 2
## 197 1.590597 1 0 4
## 198 1.786057 1 0 2
## 199 1.523155 0 0 2
## 200 1.558846 1 0 4
## 201 2.334524 0 0 1
## 202 1.496663 1 0 3
## 203 1.276715 0 0 2
## 204 2.080865 1 1 4
## 205 1.407125 0 0 2
## 206 1.523155 0 1 4
## 207 1.939072 1 1 3
## 208 2.130728 1 0 2
## 209 2.019901 0 1 2
## 210 2.116601 1 1 4
## 211 1.746425 1 1 4
## 212 1.600000 0 0 2
## 213 1.902630 0 1 3
## 214 1.612452 0 0 3
## 215 1.509967 0 0 2
## 216 1.462874 0 1 4
## 217 1.931321 0 1 2
## 218 1.802776 1 1 5
## 219 1.860108 1 0 1
## 220 1.421267 0 0 3
## 221 1.791647 1 0 3
## 222 2.000000 0 1 1
## 223 1.892089 0 0 1
## 224 2.325941 0 1 3
## 225 1.552417 1 1 3
## 226 2.111871 1 0 2
## 227 1.737815 0 0 1
## 228 1.596872 1 1 5
## 229 1.609348 1 1 4
## 230 1.711724 1 1 4
## 231 1.865476 1 0 2
## 232 1.939072 0 1 3
## 233 1.389244 0 0 1
## 234 1.593738 1 0 3
## 235 1.466288 1 1 5
## 236 1.868154 0 0 2
## 237 1.449138 1 1 5
## 238 2.123676 1 1 2
## 239 2.029778 0 0 NA
## 240 2.085665 1 0 1
## 241 1.902630 0 0 2
## 242 1.723369 0 0 1
## 243 1.910497 0 0 2
## 244 1.873499 0 1 2
## 245 1.819341 0 0 1
## 246 2.184033 1 1 3
## 247 1.972308 0 0 1
## 248 1.843909 0 0 2
## 249 1.224745 0 1 3
## 250 1.081665 0 1 2
## 251 1.349074 0 1 3
## 252 1.516575 0 0 2
## 253 1.208305 0 0 3
## 254 1.228821 0 0 2
## 255 1.658312 0 1 4
## 256 2.024846 0 0 2
## 257 1.532971 1 1 4
## 258 1.421267 0 1 3
## 259 1.772005 1 0 3
## 260 2.042058 0 1 3
## 261 1.449138 1 1 4
## 262 2.024846 0 1 3
## 263 1.469694 0 0 2
## 264 1.609348 0 0 3
## 265 1.658312 1 0 4
## 266 1.469694 0 0 3
## 267 1.479865 1 1 5
## 268 1.780449 0 0 2
## 269 2.054264 0 0 NA
## 270 1.873499 1 0 1
## 271 2.188607 0 1 1
## 272 1.352775 1 1 5
## 273 1.374773 1 1 4
## 274 1.513275 1 1 5
## 275 1.449138 1 1 5
## 276 1.600000 1 1 5
## 277 1.763519 0 0 2
## 278 1.808314 0 0 2
## 279 1.410674 0 0 3
## 280 1.737815 0 0 2
## 281 1.757840 0 0 1
## 282 1.708801 1 0 3
## 283 1.280625 0 1 2
## 284 1.568439 1 0 3
## 285 1.334166 0 0 2
## 286 1.854724 1 1 4
## 287 1.717556 0 0 1
## 288 1.977372 0 0 NA
## 289 1.752142 1 1 5
## 290 2.336664 0 0 1
## 291 1.670329 1 0 2
## 292 1.506652 0 0 2
## 293 1.621727 0 1 2
## 294 1.962142 0 0 NA
## 295 2.222611 0 0 1
## 296 2.019901 0 0 NA
## 297 1.720465 0 1 3
## 298 2.024846 0 0 1
## 299 1.606238 1 0 3
## 300 1.664332 1 1 3
## 301 1.786057 1 1 3
## 302 1.685230 1 1 4
## 303 1.539480 1 1 4
## 304 1.878829 1 0 2
## 305 2.282542 0 0 1
## 306 2.109502 1 0 2
## 307 2.121320 0 1 3
## 308 1.868154 1 1 3
## 309 2.044505 0 0 1
## 310 1.944222 1 0 1
## 311 1.757840 1 1 5
## 312 2.032240 1 1 3
## 313 2.083267 1 1 2
## 314 1.900000 1 0 1
## 315 1.466288 1 1 5
## 316 1.962142 1 0 3
## 317 1.838478 1 0 2
## 318 1.876166 0 0 NA
## 319 2.151743 1 1 4
## 320 2.012461 1 0 1
## 321 1.382027 0 1 2
## 322 1.746425 1 1 3
## 323 2.347339 0 0 1
## 324 2.142429 0 0 1
## 325 1.997498 0 1 2
## 326 1.652271 0 0 1
## 327 1.694107 1 1 5
## 328 1.577973 1 0 3
## 329 1.822087 0 0 1
## 330 2.002498 0 0 1
## 331 1.555635 1 0 3
## 332 1.964688 1 0 2
## 333 1.688194 1 1 4
## 334 1.509967 0 0 3
## 335 2.426932 0 0 1
## 336 2.209072 1 0 1
## 337 1.545962 1 0 4
## 338 2.073644 1 0 1
## 339 1.407125 0 0 2
## 340 1.407125 1 1 4
## 341 1.667333 1 1 5
## 342 2.195450 0 1 3
## 343 2.000000 0 0 1
## 344 1.691153 0 0 3
## 345 2.000000 0 1 1
## 346 1.749286 1 0 3
## 347 1.479865 1 0 3
## 348 2.165641 1 0 1
## 349 1.637071 1 0 3
## 350 1.519868 1 0 2
## 351 1.545962 1 1 4
## 352 1.603122 1 0 4
## 353 1.558846 1 1 4
## 354 1.577973 1 0 3
## 355 1.714643 0 0 2
## 356 1.816590 0 0 1
## 357 1.403567 0 1 3
## 358 1.878829 1 1 4
## 359 1.697056 1 0 3
## 360 1.843909 1 0 2
## 361 2.056696 0 1 3
## 362 2.078461 0 0 2
## 363 1.600000 1 1 5
## 364 1.902630 1 1 4
## 365 1.754993 0 0 2
## 366 1.606238 0 1 4
## 367 1.987461 0 1 2
## 368 2.042058 0 1 2
## 369 1.523155 1 1 4
## 370 1.596872 1 1 3
## 371 2.140093 1 0 1
## 372 1.552417 0 1 3
## 373 2.073644 0 0 1
## 374 1.469694 1 1 3
## 375 1.685230 1 0 4
## 376 1.691153 0 0 3
## 377 1.757840 1 0 2
## 378 1.780449 1 0 4
## 379 1.640122 1 1 5
## 380 1.652271 1 1 4
## 381 1.349074 1 1 3
## 382 2.078461 0 0 1
## 383 2.374868 0 0 2
## 384 2.004994 1 0 3
## 385 1.424781 1 1 5
## 386 2.118962 0 0 1
## 387 1.780449 1 1 4
## 388 1.549193 1 0 3
## 389 1.783255 1 0 2
## 390 1.816590 1 0 3
## 391 1.884144 0 0 1
## 392 2.291288 0 0 1
## 393 1.760682 0 1 2
## 394 1.400000 1 1 4
## 395 2.100000 1 1 4
## 396 1.673320 1 0 4
## 397 1.802776 0 0 3
## 398 1.679286 1 1 3
## 399 1.449138 0 0 2
## 400 1.926136 0 1 3
## 401 1.729162 0 0 2
## 402 1.702939 0 0 3
## 403 1.691153 0 1 4
## 404 1.526434 1 1 5
## 405 1.565248 1 1 4
## 406 1.933908 0 1 1
## 407 1.682260 0 1 2
## 408 1.516575 1 1 4
## 409 1.428286 1 1 4
## 410 2.328089 0 0 2
## 411 1.729162 0 1 3
## 412 2.511971 1 1 2
## 413 2.116601 1 0 2
## 414 1.513275 0 0 3
## 415 1.449138 1 1 5
## 416 1.691153 1 0 4
## 417 1.997498 0 0 2
## 418 1.813836 1 1 4
## 419 1.640122 0 1 2
## 420 2.034699 0 0 1
## 421 1.345362 1 1 4
## 422 2.109502 0 0 1
## 423 1.702939 0 1 4
## 424 1.886796 1 1 4
## 425 2.507987 0 1 3
## 426 1.959592 1 1 2
## 427 1.954482 1 0 2
## 428 1.894730 1 1 4
## 429 1.794436 0 1 2
## 430 1.536229 0 0 3
## 431 1.873499 0 0 2
## 432 2.109502 1 1 2
## 433 1.590597 1 1 4
## 434 1.969772 0 1 2
## 435 2.213594 0 1 2
## 436 1.860108 1 1 4
## 437 1.349074 0 1 3
## 438 1.577973 1 0 4
## 439 2.032240 0 0 NA
## 440 1.786057 0 0 2
## 441 1.878829 0 0 2
## 442 1.334166 0 1 2
## 443 1.493318 1 1 5
## 444 1.835756 0 1 2
## 445 1.382027 0 1 2
## 446 1.606238 1 1 5
## 447 1.489966 0 0 2
## 448 1.694107 0 0 2
## 449 1.749286 1 1 5
## 450 2.262742 1 1 2
## 451 1.435270 0 1 4
## 452 1.941649 0 1 2
## 453 1.529706 1 1 4
## 454 2.039608 1 0 2
## 455 1.822087 0 1 3
## 456 1.627882 1 0 2
## 457 1.717556 1 0 4
## 458 2.068816 1 1 2
## 459 2.007486 0 0 NA
## 460 2.078461 1 1 3
## 461 1.846619 1 1 4
## 462 1.720465 0 0 2
## 463 1.452584 1 1 5
## 464 1.571623 1 0 4
## 465 1.407125 0 0 2
## 466 1.723369 0 0 2
## 467 1.407125 0 0 2
## 468 2.366432 1 1 3
## 469 1.757840 1 0 4
## 470 1.428286 0 0 2
## 471 1.435270 1 0 3
## 472 2.128380 0 1 2
## 473 1.800000 0 1 4
## 474 1.414214 1 1 5
## 475 2.034699 0 0 NA
## 476 1.700000 1 1 5
## 477 1.349074 0 1 4
## 478 1.772005 0 1 4
## 479 1.526434 1 1 5
## 480 1.892089 1 0 1
## 481 1.509967 0 0 3
## 482 1.915724 1 1 3
## 483 1.760682 0 1 3
## 484 1.763519 1 0 4
## 485 2.100000 0 1 3
## 486 1.729162 1 0 3
## 487 1.788854 0 1 3
## 488 1.506652 1 0 4
## 489 1.951922 0 0 NA
## 490 1.462874 0 0 2
## 491 1.910497 0 1 1
## 492 1.568439 0 0 3
## 493 1.835756 0 0 2
## 494 1.783255 0 1 4
## 495 1.519868 1 1 5
## 496 1.640122 1 1 5
## 497 1.421267 0 0 3
## 498 1.417745 1 1 5
## 499 1.649242 1 0 4
## 500 1.734935 1 1 4
## 501 2.090454 1 1 4
## 502 1.846619 0 1 1
## 503 1.552417 1 0 3
## 504 2.351595 0 0 2
## 505 1.264911 0 1 3
## 506 1.676305 0 1 4
## 507 1.646208 0 0 3
## 508 1.857418 1 1 4
## 509 2.095233 1 1 4
## 510 1.618641 1 0 3
## 511 2.123676 0 0 2
## 512 1.634013 0 0 3
## 513 1.685230 0 0 1
## 514 1.870829 0 0 1
## 515 1.624808 0 1 3
## 516 1.957039 1 0 3
## 517 2.009975 0 0 NA
## 518 1.410674 0 0 2
## 519 1.462874 1 1 4
## 520 1.808314 1 1 5
## 521 1.884144 1 1 4
## 522 1.711724 1 1 3
## 523 1.774824 0 0 2
## 524 1.410674 1 1 5
## 525 2.140093 1 0 3
## 526 1.708801 1 1 4
## 527 1.737815 0 1 4
## 528 2.622975 0 0 1
## 529 1.385641 1 1 3
## 530 1.697056 0 1 4
## 531 1.788854 0 0 2
## 532 1.679286 0 1 2
## 533 2.437212 0 1 1
## 534 1.697056 1 0 4
## 535 1.571623 1 0 3
## 536 1.813836 0 0 2
## 537 1.910497 0 0 1
## 538 1.994994 1 0 3
## 539 1.939072 1 1 4
## 540 1.565248 0 0 2
## 541 1.523155 0 0 3
## 542 1.621727 0 1 4
## 543 1.720465 1 0 4
## 544 2.004994 0 0 2
## 545 2.467793 1 0 3
## 546 1.769181 0 0 3
## 547 1.841195 1 0 2
## 548 1.811077 1 0 3
## 549 2.154066 1 1 4
## 550 1.643168 1 1 5
## 551 1.658312 0 1 2
## 552 1.878829 0 0 1
## 553 2.128380 1 1 3
## 554 2.102380 1 0 1
## 555 1.630951 0 1 2
## 556 2.140093 1 0 3
## 557 1.621727 1 0 4
## 558 1.581139 1 0 4
## 559 1.977372 0 0 NA
## 560 1.509967 0 1 3
## 561 1.593738 0 0 2
## 562 1.697056 1 0 3
## 563 1.574802 1 0 3
## 564 2.170253 0 0 2
## 565 1.565248 1 0 3
## 566 1.658312 1 0 3
## 567 1.428286 1 1 5
## 568 1.816590 0 0 3
## 569 1.276715 0 0 2
## 570 1.752142 1 0 3
## 571 1.466288 1 1 5
## 572 1.682260 0 1 2
## 573 2.037155 0 0 NA
## 574 1.723369 1 0 4
## 575 1.743560 1 1 4
## 576 1.568439 1 0 3
## 577 1.711724 0 1 3
## 578 1.886796 0 1 1
## 579 1.584298 1 1 5
## 580 2.149419 0 1 1
## 581 1.220656 0 0 2
## 582 1.777639 0 0 3
## 583 1.558846 0 1 3
## 584 1.994994 0 1 1
## 585 1.705872 0 1 3
## 586 1.421267 0 1 4
## 587 1.862794 0 0 2
## 588 1.630951 1 0 3
## 589 1.780449 0 0 3
## 590 1.558846 1 0 4
## 591 2.061553 0 0 NA
## 592 2.685144 1 0 3
## 593 1.345362 0 1 3
## 594 1.714643 0 0 2
## 595 1.824829 0 0 2
## 596 1.870829 1 1 4
## 597 1.483240 1 0 3
## 598 1.670329 0 0 2
## 599 1.676305 1 0 4
## 600 1.260952 0 1 4
## 601 1.603122 1 0 3
## 602 1.509967 0 0 2
## 603 1.431782 1 1 3
## 604 1.734935 1 0 3
## 605 2.123676 0 0 NA
## 606 1.506652 1 1 4
## 607 1.777639 1 0 4
## 608 1.473092 1 0 3
## 609 2.128380 0 0 2
## 610 1.717556 1 0 4
## 611 2.133073 1 0 3
## 612 1.923538 0 1 2
## 613 1.552417 1 1 4
## 614 1.705872 1 1 4
## 615 1.992486 1 0 3
## 616 1.466288 1 1 3
## 617 1.618641 1 0 4
## 618 1.926136 1 1 4
## 619 1.459452 0 0 3
## 620 1.900000 1 0 3
## 621 1.646208 1 0 3
## 622 1.860108 1 0 3
## 623 2.177154 0 1 2
## 624 2.014944 0 1 3
## 625 1.500000 1 1 4
## 626 1.486607 0 0 2
## 627 2.310844 0 1 3
## 628 1.417745 0 0 2
## 629 2.170253 1 0 2
## 630 1.780449 1 0 4
## 631 1.643168 1 0 3
## 632 1.646208 1 1 4
## 633 1.889444 0 1 2
## 634 1.634013 0 0 3
## 635 1.819341 1 1 3
## 636 2.024846 0 1 1
## 637 1.337909 0 1 3
## 638 2.032240 0 0 1
## 639 2.347339 1 1 3
## 640 2.051828 1 1 2
## 641 2.128380 1 1 4
## 642 1.746425 1 1 4
## 643 1.923538 1 0 1
## 644 2.066398 0 0 2
## 645 1.889444 1 1 3
## 646 2.357965 0 0 1
## 647 1.783255 0 1 3
## 648 2.024846 0 1 2
## 649 1.337909 0 1 3
## 650 2.014944 1 0 1
## 651 2.211334 0 1 1
## 652 1.445683 1 1 3
## 653 1.977372 1 0 2
## 654 1.907878 1 0 2
## 655 1.786057 0 0 2
## 656 1.682260 0 0 2
## 657 2.229350 1 0 2
## 658 1.646208 1 0 4
## 659 1.711724 1 1 4
## 660 1.920937 0 1 2
## 661 1.830301 1 1 2
## 662 1.791647 1 0 2
## 663 2.088061 1 1 2
## 664 2.227106 1 1 3
## 665 1.786057 0 0 3
## 666 1.462874 1 0 2
## 667 1.558846 1 0 3
## 668 1.802776 1 1 4
## 669 2.202272 1 1 3
## 670 1.737815 1 0 3
## 671 1.587451 1 0 4
## 672 1.720465 0 1 3
## 673 1.878829 1 1 3
## 674 1.989975 0 0 1
## 675 1.939072 1 0 1
## 676 1.822087 1 1 4
## 677 1.791647 1 1 4
## 678 1.964688 1 1 3
## 679 1.881489 0 0 1
## 680 1.791647 0 0 1
## 681 2.009975 0 0 1
## 682 2.353720 1 1 3
## 683 1.769181 0 0 3
## 684 2.044505 1 1 3
## 685 2.121320 1 0 2
## 686 1.926136 0 0 1
## 687 1.987461 1 0 2
## 688 1.643168 0 0 3
## 689 1.987461 0 0 NA
## 690 1.780449 1 1 4
## 691 1.643168 0 0 2
## 692 1.113553 0 0 2
## 693 1.962142 1 0 3
## 694 1.403567 0 0 2
## 695 1.697056 1 1 3
## 696 2.046949 0 0 1
## 697 1.754993 1 1 3
## 698 1.705872 1 1 3
## 699 1.860108 1 1 3
## 700 2.154066 1 0 2
## 701 1.987461 1 0 2
## 702 1.780449 0 0 1
## 703 1.843909 1 1 3
## 704 1.612452 1 1 4
## 705 1.428286 0 1 3
## 706 1.545962 1 1 3
## 707 1.846619 1 0 3
## 708 1.584298 0 0 3
## 709 1.774824 1 1 5
## 710 1.760682 1 0 2
## 711 1.456022 1 1 3
## 712 1.808314 0 0 3
## 713 2.088061 0 0 1
## 714 1.476482 0 0 2
## 715 1.500000 0 0 1
## 716 1.360147 1 1 4
## 717 1.769181 0 1 4
## 718 1.705872 0 1 4
## 719 1.363818 1 1 4
## 720 1.797220 1 1 3
## 721 1.618641 0 1 2
## 722 1.967232 0 0 1
## 723 2.078461 0 0 NA
## 724 2.080865 1 0 3
## 725 1.558846 1 1 5
## 726 1.714643 1 0 2
## 727 1.886796 0 0 NA
## 728 1.854724 1 0 2
## 729 2.114237 0 0 1
## 730 1.913113 1 1 4
## 731 1.694107 1 0 3
## 732 1.854724 0 0 1
## 733 1.555635 1 1 4
## 734 1.452584 1 1 4
## 735 1.496663 0 0 3
## 736 2.174856 0 0 NA
## 737 1.777639 1 1 4
## 738 1.466288 1 0 4
## 739 1.835756 1 0 1
## 740 1.319091 1 1 4
## 741 1.783255 0 0 1
## 742 1.466288 1 1 5
## 743 1.529706 1 1 4
## 744 1.969772 0 0 1
## 745 2.078461 0 0 2
## 746 1.902630 1 0 1
## 747 1.673320 1 0 2
## 748 1.459452 1 1 5
## 749 1.691153 1 1 5
## 750 1.090871 0 1 3
## 751 2.515949 0 1 2
## 752 1.838478 0 0 2
## 753 1.697056 1 0 3
## 754 1.536229 0 0 2
## 755 1.732051 0 0 2
## 756 2.007486 0 1 2
## 757 2.046949 0 0 2
## 758 1.697056 0 1 3
## 759 1.414214 0 0 1
## 760 1.565248 1 1 3
## 761 1.783255 1 1 3
## 762 2.114237 1 1 2
## 763 1.513275 0 0 2
## 764 1.459452 0 0 3
## 765 1.435270 0 1 4
## 766 1.962142 1 0 3
## 767 1.827567 0 0 1
## 768 1.673320 0 0 3
## 769 2.128380 1 1 2
## 770 1.907878 0 0 NA
## 771 1.664332 1 0 2
## 772 1.862794 0 0 1
## 773 2.297825 0 1 1
## 774 1.969772 1 1 3
## 775 1.403567 1 1 3
## 776 1.532971 0 0 2
## 777 1.568439 0 1 3
## 778 2.308679 0 1 1
## 779 1.962142 1 0 1
## 780 1.612452 1 0 2
## 781 1.774824 0 1 3
## 782 1.830301 0 1 1
## 783 2.151743 1 1 4
## 784 1.702939 1 1 3
## 785 1.673320 0 1 3
## 786 1.702939 1 1 4
## 787 1.740690 0 1 4
## 788 1.711724 1 0 3
## 789 2.289105 0 0 1
## 790 2.188607 1 1 2
## 791 2.121320 0 0 2
## 792 1.503330 0 1 2
## 793 1.827567 0 0 2
## 794 1.523155 0 0 3
## 795 1.936492 1 0 2
## 796 1.526434 1 1 3
## 797 2.204541 1 1 3
## 798 1.720465 1 0 4
## 799 1.791647 1 1 5
## 800 1.603122 1 0 2
## 801 1.658312 1 0 4
## 802 2.142429 1 0 3
## 803 1.766352 0 0 1
## 804 2.046949 0 0 1
## 805 1.509967 0 0 3
## 806 1.838478 0 0 1
## 807 1.833030 0 1 2
## 808 2.181742 1 0 1
## 809 1.777639 1 1 4
## 810 1.800000 1 0 2
## 811 1.777639 1 1 4
## 812 1.920937 1 0 1
## 813 1.341641 0 0 2
## 814 1.549193 0 0 2
## 815 1.910497 0 0 NA
## 816 1.749286 1 0 3
## 817 1.571623 1 0 4
## 818 1.685230 0 1 2
## 819 1.326650 1 0 3
## 820 1.700000 0 1 2
## 821 1.536229 1 1 5
## 822 1.292285 0 1 3
## 823 1.624808 0 1 2
## 824 1.319091 0 1 4
## 825 1.923538 1 0 1
## 826 2.019901 0 1 2
## 827 1.549193 0 0 2
## 828 2.085665 0 0 NA
## 829 1.769181 0 0 2
## 830 1.982423 0 1 2
## 831 1.791647 0 0 1
## 832 1.920937 1 0 2
## 833 2.104757 0 1 2
## 834 1.532971 1 1 3
## 835 1.590597 1 0 4
## 836 2.273763 0 0 1
## 837 1.873499 0 0 2
## 838 1.694107 0 1 2
## 839 2.156386 1 0 3
## 840 1.894730 0 0 2
## 841 1.549193 1 0 4
## 842 1.984943 0 1 3
## 843 1.791647 0 0 2
## 844 1.763519 1 0 4
## 845 1.634013 1 0 3
## 846 1.702939 0 0 2
## 847 1.679286 1 0 4
## 848 1.954482 1 0 3
## 849 2.022375 0 0 2
## 850 1.345362 0 1 2
## 851 1.673320 1 0 4
## 852 1.509967 1 0 4
## 853 1.780449 1 0 4
## 854 1.967232 0 0 NA
## 855 1.459452 0 0 2
## 856 1.539480 0 0 3
## 857 2.049390 0 1 2
## 858 1.702939 1 0 3
## 859 1.513275 1 1 5
## 860 1.951922 0 0 1
## 861 1.876166 0 1 1
## 862 2.029778 1 1 4
## 863 2.184033 1 1 3
## 864 1.711724 1 1 3
## 865 1.658312 0 1 3
## 866 1.889444 0 1 2
## 867 1.682260 1 0 3
## 868 1.740690 1 1 4
## 869 2.236068 0 1 1
## 870 1.606238 1 0 3
## 871 1.688194 0 0 2
## 872 1.920937 0 1 3
## 873 1.469694 1 1 4
## 874 1.496663 0 1 3
## 875 1.352775 0 0 3
## 876 1.545962 1 1 4
## 877 1.772005 1 0 3
## 878 1.723369 1 0 2
## 879 1.797220 1 0 3
## 880 1.476482 0 0 2
## 881 2.071232 0 0 1
## 882 1.760682 1 1 3
## 883 1.685230 0 0 2
## 884 1.907878 1 0 3
## 885 1.749286 0 1 4
## 886 1.902630 1 0 3
## 887 1.603122 0 1 3
## 888 1.315295 0 1 4
## 889 2.111871 0 1 3
## 890 1.816590 0 0 2
## 891 1.264911 0 0 2
## 892 1.552417 0 0 2
## 893 1.526434 0 0 2
## 894 2.042058 1 1 3
## 895 2.414539 1 0 2
## 896 1.752142 1 0 4
## 897 2.204541 0 0 1
## 898 1.590597 0 0 2
## 899 1.568439 1 0 3
## 900 1.802776 1 1 4
## 901 1.634013 1 1 4
## 902 1.392839 0 0 2
## 903 1.852026 0 1 2
## 904 2.334524 0 1 3
## 905 1.726268 1 1 3
## 906 2.088061 0 1 3
## 907 1.838478 0 0 1
## 908 1.389244 1 1 4
## 909 2.078461 0 0 2
## 910 1.711724 0 0 2
## 911 1.456022 0 0 2
## 912 1.969772 0 1 2
## 913 1.794436 1 1 5
## 914 1.969772 0 1 2
## 915 1.410674 1 1 3
## 916 1.737815 1 0 3
## 917 1.878829 0 0 NA
## 918 2.215852 0 0 2
## 919 2.364318 0 0 2
## 920 1.854724 0 0 2
## 921 1.682260 1 0 2
## 922 1.811077 0 0 3
## 923 1.618641 0 0 3
## 924 1.403567 1 1 3
## 925 2.114237 1 1 3
## 926 1.187434 0 1 3
## 927 2.271563 1 0 2
## 928 2.019901 1 1 3
## 929 2.076054 0 1 3
## 930 1.854724 0 0 1
## 931 1.428286 0 0 2
## 932 1.148913 0 1 2
## 933 1.574802 1 1 5
## 934 2.007486 0 1 2
## 935 1.449138 1 1 3
## 936 1.122497 0 1 4
## 937 1.600000 1 0 4
## 938 1.797220 0 0 1
## 939 1.897367 1 0 3
## 940 1.835756 0 0 2
## 941 1.830301 0 1 2
## 942 1.951922 0 0 NA
## 943 1.593738 0 1 3
## 944 1.989975 0 0 2
## 945 1.811077 1 1 4
## 946 2.128380 0 1 1
## 947 1.661325 1 0 4
## 948 1.808314 1 0 3
## 949 1.676305 1 0 4
## 950 1.841195 0 1 1
## 951 1.816590 0 0 2
## 952 1.808314 0 0 1
## 953 1.476482 0 1 3
## 954 1.700000 1 0 4
## 955 1.797220 0 1 3
## 956 1.345362 0 1 3
## 957 1.417745 0 1 3
## 958 1.606238 1 1 5
## 959 1.649242 0 0 2
## 960 1.603122 1 0 2
## 961 1.979899 0 0 NA
## 962 2.116601 0 0 2
## 963 1.574802 0 0 2
## 964 2.289105 1 1 4
## 965 1.664332 0 0 2
## 966 1.545962 1 0 4
## 967 2.014944 0 1 1
## 968 1.857418 1 1 4
## 969 1.760682 0 1 2
## 970 1.640122 0 1 3
## 971 2.443358 1 0 2
## 972 1.700000 1 0 4
## 973 1.445683 0 0 2
## 974 1.783255 0 0 2
## 975 1.705872 1 1 4
## 976 2.291288 0 1 2
## 977 1.526434 1 1 4
## 978 1.944222 0 0 2
## 979 1.532971 0 0 3
## 980 1.519868 0 0 2
## 981 1.857418 0 1 3
## 982 1.868154 0 0 2
## 983 1.646208 1 1 4
## 984 1.374773 0 1 4
## 985 1.624808 0 1 3
## 986 2.218107 0 0 NA
## 987 1.536229 1 0 2
## 988 1.717556 0 1 3
## 989 1.967232 1 0 2
## 990 1.846619 1 0 3
## 991 1.421267 0 1 3
## 992 1.637071 0 1 4
## 993 1.483240 1 0 3
## 994 2.046949 1 0 2
## 995 1.549193 0 1 4
## 996 2.037155 1 0 1
## 997 1.396424 0 1 3
## 998 1.204159 0 0 2
## 999 1.774824 0 0 2
## 1000 2.487971 1 0 1
## 1001 1.772005 1 0 3
## 1002 1.476482 1 1 5
## 1003 1.772005 1 1 4
## 1004 2.330236 0 0 1
## 1005 2.197726 1 1 3
## 1006 1.808314 1 1 4
## 1007 1.754993 1 1 4
## 1008 1.691153 1 0 3
## 1009 1.822087 1 1 3
## 1010 1.700000 1 0 3
## 1011 1.652271 0 1 3
## 1012 1.523155 1 1 4
## 1013 1.905256 1 0 2
## 1014 1.939072 0 1 1
## 1015 1.621727 0 1 2
## 1016 1.862794 1 1 4
## 1017 1.596872 1 0 3
## 1018 1.581139 1 0 4
## 1019 1.737815 1 1 4
## 1020 1.974842 0 0 NA
## 1021 1.600000 1 0 3
## 1022 1.824829 0 0 NA
## 1023 1.802776 0 0 2
## 1024 1.717556 0 1 4
## 1025 1.679286 0 0 3
## 1026 1.959592 1 0 2
## 1027 1.994994 1 0 3
## 1028 1.682260 0 0 2
## 1029 1.640122 1 1 5
## 1030 1.473092 1 1 4
## 1031 1.700000 1 0 3
## 1032 1.813836 0 0 3
## 1033 2.479919 1 0 1
## 1034 1.708801 0 0 3
## 1035 1.734935 0 0 1
## 1036 1.720465 0 0 1
## 1037 1.523155 0 0 2
## 1038 1.910497 0 0 NA
## 1039 1.459452 1 1 5
## 1040 1.860108 1 1 4
## 1041 1.587451 1 1 5
## 1042 1.529706 1 1 4
## 1043 1.363818 1 1 3
## 1044 1.783255 0 1 3
## 1045 1.957039 0 0 1
## 1046 1.417745 0 0 2
## 1047 1.523155 1 1 5
## 1048 1.876166 1 1 3
## 1049 1.868154 0 0 2
## 1050 1.700000 0 1 2
## 1051 1.878829 1 1 3
## 1052 1.843909 1 1 3
## 1053 1.944222 0 1 2
## 1054 1.424781 1 1 4
## 1055 1.992486 1 1 4
## 1056 1.723369 0 0 3
## 1057 1.449138 0 1 4
## 1058 1.841195 1 0 2
## 1059 1.424781 0 0 2
## 1060 1.506652 0 0 3
## 1061 1.667333 1 1 5
## 1062 1.236932 0 1 2
## 1063 2.034699 0 0 2
## 1064 1.558846 1 0 3
## 1065 1.822087 1 0 3
## 1066 1.711724 1 1 3
## 1067 2.078461 0 1 3
## 1068 1.516575 1 1 4
## 1069 1.679286 1 1 5
## 1070 1.655295 0 0 2
## 1071 1.000000 0 0 2
## 1072 2.282542 1 1 2
## 1073 1.870829 1 0 3
## 1074 1.732051 1 0 3
## 1075 1.593738 1 1 5
## 1076 1.542725 0 0 2
## 1077 1.509967 1 0 4
## 1078 2.256103 0 1 1
## 1079 1.363818 0 0 3
## 1080 1.780449 1 1 4
## 1081 1.587451 1 1 4
## 1082 1.819341 1 1 4
## 1083 1.260952 1 1 3
## 1084 1.584298 0 1 3
## 1085 1.746425 0 0 2
## 1086 1.466288 1 1 3
## 1087 1.910497 1 0 2
## 1088 1.581139 1 1 5
## 1089 2.004994 1 0 3
## 1090 1.757840 0 1 3
## 1091 1.737815 0 0 2
## 1092 1.827567 1 0 1
## 1093 1.876166 1 0 2
## 1094 2.073644 1 1 3
## 1095 1.363818 0 1 3
## 1096 2.083267 0 1 2
## 1097 1.603122 0 0 1
## 1098 1.640122 0 0 2
## 1099 1.523155 1 1 4
## 1100 1.870829 1 1 4
## 1101 1.780449 1 1 4
## 1102 1.777639 0 1 2
## 1103 1.519868 0 1 2
## 1104 1.977372 0 1 2
## 1105 1.503330 0 0 3
## 1106 2.042058 0 0 1
## 1107 1.780449 1 1 4
## 1108 1.685230 0 1 2
## 1109 1.646208 1 1 4
## 1110 1.797220 0 1 3
## 1111 2.231591 0 1 2
## 1112 1.936492 1 0 1
## 1113 1.445683 1 0 4
## 1114 2.594224 1 0 2
## 1115 1.969772 0 0 NA
## 1116 2.179449 1 0 2
## 1117 1.749286 1 1 3
## 1118 1.830301 0 0 1
## 1119 1.571623 1 0 4
## 1120 2.037155 1 1 3
## 1121 1.974842 1 0 2
## 1122 1.469694 0 1 4
## 1123 1.946792 1 0 2
## 1124 2.095233 1 1 4
## 1125 1.702939 0 0 2
## 1126 1.529706 1 1 4
## 1127 1.382027 0 0 2
## 1128 2.090454 0 0 2
## 1129 2.118962 0 0 NA
## 1130 1.897367 1 0 2
## 1131 2.218107 1 0 2
## 1132 1.802776 0 1 4
## 1133 1.568439 0 0 2
## 1134 1.979899 1 1 3
## 1135 1.584298 1 0 3
## 1136 2.022375 0 0 2
## 1137 1.679286 1 0 3
## 1138 1.900000 1 0 3
## 1139 1.833030 1 1 3
## 1140 2.387467 1 0 1
## 1141 1.565248 0 0 2
## 1142 1.670329 1 0 4
## 1143 1.500000 0 1 4
## 1144 2.024846 0 0 1
## 1145 2.137756 0 1 3
## 1146 1.539480 1 0 3
## 1147 2.073644 1 0 1
## 1148 1.630951 0 0 2
## 1149 1.462874 0 1 3
## 1150 1.500000 0 0 2
## 1151 2.188607 0 0 1
## 1152 1.621727 1 0 3
## 1153 2.114237 1 0 2
## 1154 2.121320 0 1 1
## 1155 1.532971 1 0 3
## 1156 1.884144 1 0 2
## 1157 2.073644 1 1 3
## 1158 2.076054 0 0 1
## 1159 2.317326 1 0 3
## 1160 1.500000 0 0 3
## 1161 1.959592 0 1 1
## 1162 1.694107 0 0 2
## 1163 1.769181 0 0 2
## 1164 1.962142 1 1 3
## 1165 1.489966 0 1 3
## 1166 1.843909 0 0 1
## 1167 1.805547 0 0 2
## 1168 1.500000 0 0 2
## 1169 1.734935 0 0 2
## 1170 2.338803 0 0 1
## 1171 1.664332 0 0 2
## 1172 1.873499 1 1 3
## 1173 1.783255 1 0 4
## 1174 1.400000 1 1 4
## 1175 1.371131 1 0 2
## 1176 1.655295 1 0 3
## 1177 2.004994 1 0 3
## 1178 1.876166 0 0 1
## 1179 1.964688 0 1 2
## 1180 1.624808 1 1 3
## 1181 1.791647 0 0 1
## 1182 1.740690 1 1 3
## 1183 1.708801 1 1 4
## 1184 1.946792 1 0 2
## 1185 1.486607 1 0 2
## 1186 2.118962 1 1 4
## 1187 2.066398 1 0 2
## 1188 2.078461 0 0 1
## 1189 1.838478 0 0 2
## 1190 2.032240 0 0 1
## 1191 1.830301 1 0 1
## 1192 1.936492 1 0 2
## 1193 1.822087 0 1 3
## 1194 1.574802 0 0 2
## 1195 1.367479 0 0 2
## 1196 1.729162 0 1 3
## 1197 2.315167 0 0 1
## 1198 1.367479 0 0 2
## 1199 1.330413 0 1 4
## 1200 2.163331 0 0 1
## 1201 1.729162 0 0 2
## 1202 1.268858 0 1 2
## 1203 1.737815 0 0 2
## 1204 1.558846 0 0 2
## 1205 2.118962 0 0 2
## 1206 1.565248 1 0 3
## 1207 2.039608 1 1 3
## 1208 1.802776 1 1 3
## 1209 1.612452 0 0 2
## 1210 2.400000 1 1 3
## 1211 1.786057 0 1 3
## 1212 1.726268 1 0 2
## 1213 2.513961 0 0 2
## 1214 2.066398 0 1 3
## 1215 1.593738 0 1 4
## 1216 2.258318 1 0 2
## 1217 1.679286 1 0 2
## 1218 2.357965 1 1 4
## 1219 1.618641 1 1 3
## 1220 1.483240 1 1 4
## 1221 1.913113 1 1 4
## 1222 1.843909 1 1 3
## 1223 1.371131 1 0 2
## 1224 1.536229 1 1 4
## 1225 1.772005 1 0 4
## 1226 2.004994 1 0 2
## 1227 1.907878 0 1 2
## 1228 1.612452 1 1 5
## 1229 1.732051 0 1 3
## 1230 2.313007 0 0 2
## 1231 1.873499 0 1 3
## 1232 1.486607 0 0 3
## 1233 1.691153 1 0 4
## 1234 1.646208 0 0 3
## 1235 1.627882 1 1 4
## 1236 1.410674 0 1 3
## 1237 1.661325 1 0 3
## 1238 2.231591 0 1 2
## 1239 2.149419 1 0 2
## 1240 1.590597 1 1 4
## 1241 2.547548 1 0 2
## 1242 2.165641 1 0 1
## 1243 1.774824 1 1 4
## 1244 1.805547 0 1 4
## 1245 1.529706 0 1 2
## 1246 1.933908 1 1 3
## 1247 1.466288 1 1 5
## 1248 1.944222 0 1 3
## 1249 1.506652 0 1 2
## 1250 2.063977 1 0 1
## 1251 1.349074 1 1 5
## 1252 1.928730 1 0 2
## 1253 1.702939 0 0 2
## 1254 1.740690 0 0 3
## 1255 1.523155 1 0 2
## 1256 2.280351 1 1 3
## 1257 1.529706 1 0 3
## 1258 1.743560 1 1 4
## 1259 2.017424 0 0 NA
## 1260 1.979899 0 1 2
## 1261 1.766352 0 1 3
## 1262 1.841195 0 0 2
## 1263 1.743560 0 1 3
## 1264 1.558846 1 1 4
## 1265 1.688194 1 0 3
## 1266 1.714643 1 0 4
## 1267 2.066398 1 1 3
## 1268 1.987461 0 1 2
## 1269 1.974842 1 0 2
## 1270 1.763519 0 0 3
## 1271 1.676305 0 0 3
## 1272 2.032240 0 1 2
## 1273 1.574802 1 1 4
## 1274 1.459452 1 1 5
## 1275 1.456022 1 1 4
## 1276 1.905256 1 0 3
## 1277 1.708801 0 0 2
## 1278 1.685230 1 1 3
## 1279 1.621727 1 0 3
## 1280 2.092845 1 1 4
## 1281 1.646208 1 1 4
## 1282 1.946792 1 0 3
## 1283 1.640122 1 1 5
## 1284 1.539480 0 0 1
## 1285 1.708801 1 1 4
## 1286 1.542725 0 0 2
## 1287 1.590597 1 1 5
## 1288 1.596872 0 1 3
## 1289 2.063977 1 0 1
## 1290 1.997498 1 1 3
## 1291 2.547548 1 0 2
## 1292 1.967232 1 0 2
## 1293 2.027313 0 1 2
## 1294 1.827567 1 0 3
## 1295 1.786057 0 0 1
## 1296 1.794436 0 1 3
## 1297 1.618641 1 0 3
## 1298 1.928730 1 1 4
## 1299 1.865476 0 0 2
## 1300 1.865476 0 0 2
## 1301 1.615549 0 1 3
## 1302 1.452584 1 0 3
## 1303 2.247221 0 0 1
## 1304 1.523155 1 1 5
## 1305 2.042058 0 0 1
## 1306 2.049390 1 1 4
## 1307 1.673320 0 1 4
## 1308 1.621727 1 0 3
## 1309 1.536229 1 1 4
## 1310 1.676305 1 0 3
## 1311 1.516575 0 0 2
## 1312 2.170253 0 0 1
## 1313 1.918333 1 1 4
## 1314 1.843909 0 1 3
## 1315 1.367479 1 1 5
## 1316 1.918333 1 1 4
## 1317 1.555635 1 1 4
## 1318 1.910497 1 0 2
## 1319 1.876166 0 1 3
## 1320 1.618641 0 0 3
## 1321 1.634013 1 0 4
## 1322 1.532971 0 1 3
## 1323 1.473092 0 0 1
## 1324 2.404163 0 1 2
## 1325 1.926136 1 0 2
## 1326 1.341641 0 0 1
## 1327 1.476482 0 0 2
## 1328 1.640122 1 1 4
## 1329 1.824829 0 0 1
## 1330 1.606238 1 0 3
## 1331 1.889444 1 0 3
## 1332 2.420744 0 0 2
## 1333 1.513275 0 0 2
## 1334 2.412468 0 1 1
## 1335 2.247221 0 1 1
## 1336 1.984943 1 1 2
## 1337 1.523155 1 1 5
## 1338 1.640122 1 1 5
## 1339 1.615549 1 0 2
## 1340 1.838478 1 1 2
## 1341 2.330236 0 0 NA
## 1342 1.627882 0 0 2
## 1343 2.172556 1 0 2
## 1344 1.284523 0 0 2
## 1345 2.340940 1 1 3
## 1346 2.249444 1 0 3
## 1347 1.780449 0 0 3
## 1348 1.802776 1 1 4
## 1349 1.873499 0 0 1
## 1350 1.596872 1 0 3
## 1351 1.972308 1 1 4
## 1352 1.931321 1 1 2
## 1353 2.061553 1 0 1
## 1354 1.574802 1 1 4
## 1355 2.088061 1 1 3
## 1356 1.941649 0 1 2
## 1357 1.558846 1 0 4
## 1358 1.830301 0 0 1
## 1359 1.984943 0 0 NA
## 1360 1.865476 0 0 1
## 1361 1.833030 0 0 1
## 1362 2.029778 0 1 2
## 1363 2.174856 0 0 1
## 1364 1.459452 0 0 3
## 1365 1.552417 0 0 3
## 1366 1.545962 1 0 3
## 1367 1.780449 0 1 3
## 1368 2.370654 1 0 3
## 1369 1.396424 1 1 3
## 1370 1.587451 1 0 3
## 1371 1.972308 0 0 NA
## 1372 1.827567 1 1 2
## 1373 1.700000 1 0 2
## 1374 1.936492 1 0 3
## 1375 1.743560 0 1 4
## 1376 1.892089 0 1 1
## 1377 1.637071 1 0 2
## 1378 1.529706 0 0 1
## 1379 1.493318 1 1 4
## 1380 1.581139 1 0 3
## 1381 1.705872 0 1 2
## 1382 2.218107 0 0 NA
## 1383 2.042058 1 1 3
## 1384 1.516575 0 0 2
## 1385 1.466288 1 1 5
## 1386 1.526434 0 0 3
## 1387 2.258318 0 0 1
## 1388 1.466288 0 1 2
## 1389 1.865476 0 1 3
## 1390 1.519868 1 0 3
## 1391 1.994994 1 0 2
## 1392 2.109502 0 0 NA
## 1393 2.338803 1 1 2
## 1394 1.800000 1 0 3
## 1395 1.700000 0 0 1
## 1396 2.455606 0 1 3
## 1397 1.711724 0 0 1
## 1398 2.022375 0 1 2
## 1399 1.723369 0 0 1
## 1400 1.590597 0 1 4
## 1401 1.224745 0 1 3
## 1402 1.827567 0 0 2
## 1403 1.558846 0 0 3
## 1404 1.503330 1 1 3
## 1405 2.135416 1 0 1
## 1406 1.670329 0 1 3
## 1407 1.445683 1 1 5
## 1408 1.951922 1 1 3
## 1409 1.682260 0 1 3
## 1410 1.805547 0 1 3
## 1411 1.923538 0 0 2
## 1412 1.549193 1 0 3
## 1413 1.558846 0 0 3
## 1414 1.931321 1 1 3
## 1415 1.374773 0 1 3
## 1416 1.905256 0 0 1
## 1417 2.539685 0 1 3
## 1418 1.972308 1 0 2
## 1419 1.752142 0 0 2
## 1420 1.519868 1 0 3
## 1421 2.213594 1 0 1
## 1422 1.838478 0 0 1
## 1423 1.931321 1 1 3
## 1424 1.797220 0 1 4
## 1425 2.227106 1 0 2
## 1426 2.366432 1 0 3
## 1427 1.811077 1 1 4
## 1428 1.740690 1 1 5
## 1429 1.717556 1 0 4
## 1430 1.766352 0 0 1
## 1431 1.780449 1 0 3
## 1432 1.737815 0 0 2
## 1433 1.959592 1 0 3
## 1434 1.946792 0 0 1
## 1435 2.032240 0 1 3
## 1436 2.260531 1 0 2
## 1437 1.900000 1 0 2
## 1438 1.846619 0 1 3
## 1439 1.658312 0 0 2
## 1440 1.878829 0 0 1
## 1441 2.306513 0 1 1
## 1442 2.209072 1 0 2
## 1443 1.562050 0 1 2
## 1444 1.987461 0 1 3
## 1445 1.565248 1 0 3
## 1446 1.473092 0 1 3
## 1447 1.881489 1 0 1
## 1448 2.297825 1 1 2
## 1449 1.726268 0 1 3
## 1450 1.389244 0 0 2
## 1451 1.691153 1 1 5
## 1452 2.319483 0 1 1
## 1453 2.353720 1 0 1
## 1454 1.673320 1 0 3
## 1455 2.076054 1 0 2
## 1456 1.584298 0 1 3
## 1457 1.726268 0 1 3
## 1458 1.682260 1 0 3
## 1459 1.392839 0 1 4
## 1460 1.723369 1 0 3
## 1461 2.092845 0 0 1
## 1462 1.822087 1 0 2
## 1463 1.646208 1 1 4
## 1464 1.905256 0 1 1
## 1465 1.868154 1 1 4
## 1466 1.700000 1 1 4
## 1467 2.019901 0 0 2
## 1468 2.017424 0 0 1
## 1469 1.824829 1 1 2
## 1470 2.149419 1 1 4
## 1471 1.939072 0 1 2
## 1472 1.860108 1 1 4
## 1473 1.655295 0 1 3
## 1474 2.078461 0 0 2
## 1475 1.723369 0 1 3
## 1476 2.269361 0 0 1
## 1477 1.493318 0 1 3
## 1478 1.752142 0 1 3
## 1479 1.714643 1 1 4
## 1480 1.483240 1 1 3
## 1481 1.509967 1 0 4
## 1482 1.816590 0 0 3
## 1483 2.181742 0 1 2
## 1484 2.022375 1 1 2
## 1485 1.957039 0 0 1
## 1486 2.097618 0 0 1
## 1487 1.500000 0 0 2
## 1488 1.506652 1 1 5
## 1489 1.571623 1 1 5
## 1490 1.643168 0 0 2
## 1491 1.797220 1 1 5
## 1492 1.417745 1 1 3
## 1493 1.288410 0 0 2
## 1494 1.382027 1 0 2
## 1495 1.697056 1 0 4
## 1496 1.473092 0 1 4
## 1497 1.816590 0 0 1
## 1498 1.486607 0 1 3
## 1499 1.600000 1 1 4
## 1500 2.118962 0 0 1
## 1501 1.714643 1 0 2
## 1502 1.830301 1 1 2
## 1503 1.670329 0 1 3
## 1504 1.824829 1 0 3
## 1505 1.794436 1 0 4
## 1506 1.746425 0 1 4
## 1507 1.603122 1 1 4
## 1508 2.090454 1 0 2
## 1509 2.256103 1 1 3
## 1510 1.752142 1 1 4
## 1511 1.526434 1 1 5
## 1512 1.587451 0 0 3
## 1513 1.500000 1 0 3
## 1514 1.827567 1 1 4
## 1515 1.894730 0 0 1
## 1516 1.760682 0 1 3
## 1517 1.797220 1 0 3
## 1518 1.786057 0 0 1
## 1519 2.238303 0 0 1
## 1520 1.876166 1 1 3
## 1521 2.080865 1 0 2
## 1522 1.870829 1 1 4
## 1523 2.140093 1 1 4
## 1524 1.664332 1 1 4
## 1525 1.813836 1 0 3
## 1526 2.209072 1 0 3
## 1527 2.088061 0 1 2
## 1528 2.439262 0 1 3
## 1529 1.822087 0 0 NA
## 1530 1.774824 0 1 3
## 1531 1.126943 0 0 3
## 1532 1.571623 0 1 3
## 1533 2.017424 0 1 3
## 1534 1.552417 0 1 3
## 1535 1.568439 1 0 3
## 1536 1.555635 0 0 3
## 1537 2.158703 1 1 4
## 1538 1.526434 1 0 4
## 1539 2.236068 1 0 3
## 1540 1.846619 1 0 2
## 1541 2.366432 0 0 1
## 1542 1.941649 0 0 2
## 1543 2.037155 0 0 2
## 1544 1.568439 1 0 3
## 1545 2.078461 1 1 4
## 1546 2.204541 1 0 1
## 1547 2.617250 1 0 2
## 1548 1.456022 1 0 3
## 1549 1.928730 0 1 1
## 1550 1.649242 1 1 3
## 1551 1.473092 0 0 2
## 1552 1.421267 0 1 2
## 1553 1.568439 0 0 2
## 1554 1.612452 0 1 3
## 1555 1.868154 1 0 2
## 1556 1.694107 1 0 4
## 1557 1.876166 1 0 2
## 1558 1.555635 1 1 3
## 1559 1.816590 0 1 3
## 1560 2.126029 1 1 3
## 1561 1.244990 0 1 3
## 1562 1.974842 0 0 1
## 1563 2.338803 0 0 1
## 1564 1.878829 1 0 2
## 1565 1.371131 1 1 4
## 1566 1.539480 1 0 2
## 1567 2.586503 1 1 3
## 1568 2.024846 0 1 1
## 1569 1.536229 1 1 4
## 1570 2.374868 1 1 3
## 1571 1.915724 0 1 1
## 1572 1.700000 0 0 2
## 1573 1.974842 0 1 2
## 1574 1.783255 0 1 3
## 1575 1.824829 1 1 2
## 1576 1.841195 1 0 1
## 1577 1.459452 0 1 4
## 1578 1.886796 0 0 2
## 1579 1.791647 0 1 3
## 1580 1.658312 1 0 3
## 1581 1.972308 0 1 3
## 1582 2.319483 0 0 1
## 1583 2.085665 1 1 2
## 1584 1.772005 1 1 4
## 1585 1.574802 0 0 2
## 1586 2.366432 0 0 NA
## 1587 1.962142 0 1 2
## 1588 1.900000 1 0 2
## 1589 2.002498 1 0 2
## 1590 2.209072 0 1 3
## 1591 1.838478 1 0 2
## 1592 1.959592 0 1 3
## 1593 1.428286 1 1 5
## 1594 1.827567 0 1 3
## 1595 2.416609 1 0 2
## 1596 2.039608 0 1 2
## 1597 1.892089 1 0 3
## 1598 2.068816 0 1 3
## 1599 1.717556 0 0 3
## 1600 1.989975 0 1 2
## 1601 1.486607 1 1 4
## 1602 2.076054 1 1 3
## 1603 1.982423 0 0 1
## 1604 2.114237 0 0 NA
## 1605 1.606238 1 0 4
## 1606 2.557342 0 0 2
## 1607 2.273763 0 0 2
## 1608 2.076054 1 1 3
## 1609 1.389244 1 1 4
## 1610 1.732051 1 0 3
## 1611 2.137756 0 1 1
## 1612 2.213594 1 0 2
## 1613 2.076054 1 1 4
## 1614 1.685230 1 0 3
## 1615 1.910497 0 1 2
## 1616 2.073644 1 0 3
## 1617 1.679286 1 0 4
## 1618 1.852026 1 1 3
## 1619 1.646208 1 1 4
## 1620 2.282542 1 0 3
## 1621 1.876166 1 1 2
## 1622 1.711724 1 1 5
## 1623 1.523155 1 1 5
## 1624 2.147091 1 1 3
## 1625 1.086278 0 1 2
## 1626 1.562050 1 1 4
## 1627 2.088061 0 0 1
## 1628 1.552417 1 1 4
## 1629 2.269361 1 0 2
## 1630 1.590597 1 0 4
## 1631 1.830301 1 1 3
## 1632 1.326650 0 1 3
## 1633 1.833030 1 0 2
## 1634 2.366432 0 0 1
## 1635 1.857418 0 0 1
## 1636 1.994994 0 1 2
## 1637 1.708801 1 1 4
## 1638 1.476482 1 1 5
## 1639 2.362202 0 0 1
## 1640 2.017424 0 0 2
## 1641 1.717556 1 1 5
## 1642 1.714643 1 0 4
## 1643 1.752142 1 1 5
## 1644 2.114237 1 1 3
## 1645 2.154066 1 0 2
## 1646 1.941649 1 1 3
## 1647 1.640122 1 1 5
## 1648 2.156386 1 1 2
## 1649 2.085665 1 1 4
## 1650 2.364318 0 0 1
## 1651 1.824829 0 0 1
## 1652 1.590597 1 0 4
## 1653 1.732051 1 0 4
## 1654 1.571623 0 1 3
## 1655 1.539480 1 1 5
## 1656 1.630951 1 1 4
## 1657 1.878829 1 0 1
## 1658 1.897367 1 1 3
## 1659 2.090454 1 1 4
## 1660 2.004994 0 1 1
## 1661 2.167948 1 0 2
## 1662 2.347339 1 0 2
## 1663 1.754993 1 0 4
## 1664 1.794436 1 1 4
## 1665 1.843909 1 1 3
## 1666 2.332381 0 0 1
## 1667 2.044505 0 0 2
## 1668 2.080865 1 1 3
## 1669 1.933908 0 1 1
## 1670 1.835756 1 1 3
## 1671 1.732051 0 1 4
## 1672 1.951922 0 1 2
## 1673 1.849324 0 0 1
## 1674 1.414214 0 0 2
## 1675 1.884144 0 0 2
## 1676 2.121320 1 1 3
## 1677 1.029563 0 1 3
## 1678 1.612452 1 0 4
## 1679 1.581139 1 0 2
## 1680 1.640122 1 1 5
## 1681 2.037155 0 0 NA
## 1682 1.849324 1 0 2
## 1683 2.133073 0 0 2
## 1684 2.376973 1 1 4
## 1685 1.841195 1 0 2
## 1686 1.382027 0 1 4
## 1687 2.042058 1 1 2
## 1688 1.918333 1 0 2
## 1689 1.640122 1 1 5
## 1690 1.843909 1 1 2
## 1691 1.673320 1 0 3
## 1692 1.746425 1 0 3
## 1693 1.800000 0 0 3
## 1694 2.247221 0 1 3
## 1695 1.606238 1 1 5
## 1696 1.679286 1 1 4
## 1697 1.637071 1 1 5
## 1698 2.017424 0 1 3
## 1699 1.466288 1 1 5
## 1700 2.206808 1 1 4
## 1701 1.835756 1 1 3
## 1702 1.624808 1 0 3
## 1703 1.760682 0 0 2
## 1704 1.711724 1 1 3
## 1705 2.181742 1 0 3
## 1706 1.962142 0 0 NA
## 1707 1.711724 1 1 3
## 1708 1.646208 1 1 5
## 1709 1.987461 0 0 NA
## 1710 1.428286 0 1 4
## 1711 1.717556 0 1 2
## 1712 2.022375 0 0 1
## 1713 1.449138 1 1 4
## 1714 2.080865 1 0 1
## 1715 2.251666 1 0 3
## 1716 2.317326 0 1 1
## 1717 1.469694 0 0 2
## 1718 1.794436 0 1 3
## 1719 1.833030 0 0 1
## 1720 1.786057 0 1 2
## 1721 1.766352 0 1 3
## 1722 2.177154 1 0 2
## 1723 1.539480 1 0 3
## 1724 2.049390 0 0 1
## 1725 2.220360 0 1 1
## 1726 1.587451 1 1 4
## 1727 1.717556 1 0 2
## 1728 1.884144 1 0 2
## 1729 1.957039 0 1 3
## 1730 1.857418 1 0 2
## 1731 1.562050 1 1 4
## 1732 2.121320 0 1 2
## 1733 1.841195 0 1 3
## 1734 2.302173 0 0 1
## 1735 1.652271 0 1 3
## 1736 1.664332 1 1 4
## 1737 1.581139 1 0 3
## 1738 1.714643 1 0 4
## 1739 1.449138 0 0 2
## 1740 2.144761 0 0 2
## 1741 1.752142 1 1 3
## 1742 1.959592 0 0 1
## 1743 1.786057 0 0 3
## 1744 1.907878 1 1 4
## 1745 2.137756 1 1 4
## 1746 2.156386 1 0 2
## 1747 1.868154 1 1 3
## 1748 1.702939 1 0 3
## 1749 1.532971 1 1 4
## 1750 1.944222 1 1 2
## 1751 1.685230 0 1 3
## 1752 1.438749 0 1 2
## 1753 1.822087 1 1 4
## 1754 2.416609 1 0 1
## 1755 2.097618 1 0 1
## 1756 1.926136 0 1 1
## 1757 1.726268 1 1 4
## 1758 2.059126 1 0 2
## 1759 2.034699 0 1 3
## 1760 1.670329 1 1 4
## 1761 2.300000 0 1 3
## 1762 1.992486 0 1 2
## 1763 2.004994 0 0 2
## 1764 1.714643 0 1 3
## 1765 1.766352 0 1 3
## 1766 1.462874 0 1 2
## 1767 1.808314 1 1 3
## 1768 2.088061 0 0 2
## 1769 1.532971 1 1 3
## 1770 2.037155 0 1 3
## 1771 1.962142 0 1 3
## 1772 2.017424 0 0 1
## 1773 1.902630 1 1 4
## 1774 1.910497 1 0 2
## 1775 1.652271 1 1 5
## 1776 2.034699 1 1 2
## 1777 1.596872 1 1 5
## 1778 1.936492 1 1 2
## 1779 1.933908 0 1 1
## 1780 2.059126 1 1 3
## 1781 2.116601 1 0 2
## 1782 2.317326 1 0 3
## 1783 1.754993 1 1 4
## 1784 1.852026 1 1 3
## 1785 1.972308 0 0 1
## 1786 1.673320 1 1 5
## 1787 2.019901 0 1 2
## 1788 1.711724 0 0 2
## 1789 1.640122 1 1 5
## 1790 1.860108 1 1 3
## 1791 1.936492 0 0 NA
## 1792 2.104757 0 1 2
## 1793 2.391652 1 1 4
## 1794 1.646208 0 1 3
## 1795 2.282542 0 1 3
## 1796 2.172556 1 1 3
## 1797 2.142429 1 1 3
## 1798 2.073644 1 1 2
## 1799 2.167948 1 1 4
## 1800 1.276715 0 1 3
## 1801 1.897367 1 1 3
## 1802 1.749286 0 0 3
## 1803 1.862794 0 0 1
## 1804 1.941649 1 0 3
## 1805 2.130728 1 1 3
## 1806 1.649242 1 1 3
## 1807 1.667333 0 0 2
## 1808 2.114237 0 0 1
## 1809 2.114237 1 1 4
## 1810 1.717556 0 1 2
## 1811 1.763519 0 1 3
## 1812 2.109502 1 1 4
## 1813 1.846619 1 1 4
## 1814 1.486607 1 0 3
## 1815 1.627882 0 1 2
## 1816 1.982423 1 0 3
## 1817 1.634013 1 0 3
## 1818 2.280351 0 1 1
## 1819 1.822087 1 1 3
## 1820 2.291288 0 0 1
## 1821 1.951922 1 1 4
## 1822 2.092845 1 1 3
## 1823 2.366432 1 1 4
## 1824 2.012461 1 0 2
## 1825 2.000000 0 0 2
## 1826 1.640122 1 1 5
## 1827 1.392839 1 1 4
## 1828 1.691153 0 0 2
## 1829 1.590597 1 1 4
## 1830 2.095233 1 1 3
## 1831 2.118962 1 1 2
## 1832 2.130728 1 0 2
## 1833 2.054264 1 1 4
## 1834 1.600000 0 1 4
## 1835 1.661325 1 1 5
## 1836 1.630951 1 1 3
## 1837 1.805547 0 0 3
## 1838 1.788854 1 1 5
## 1839 1.774824 1 0 3
## 1840 1.805547 1 0 3
## 1841 2.218107 1 1 2
## 1842 1.697056 1 0 4
## 1843 1.661325 0 0 3
## 1844 1.640122 1 1 5
## 1845 1.571623 1 0 3
## 1846 1.892089 1 0 3
## 1847 2.140093 1 1 2
## 1848 1.673320 0 0 2
## 1849 2.213594 0 0 NA
## 1850 1.568439 0 0 2
## 1851 2.154066 1 0 2
## 1852 1.977372 0 0 1
## 1853 2.211334 1 0 1
## 1854 1.469694 0 1 3
## 1855 2.000000 1 1 2
## 1856 2.236068 0 1 3
## 1857 2.343075 1 1 2
## 1858 1.949359 1 1 2
## 1859 1.691153 1 0 4
## 1860 1.493318 0 1 2
## 1861 2.351595 1 1 4
## 1862 1.752142 1 0 4
## 1863 2.114237 0 0 1
## 1864 1.865476 1 0 2
## 1865 2.049390 0 0 1
## 1866 1.931321 1 0 3
## 1867 2.204541 1 1 4
## 1868 2.211334 1 0 2
## 1869 1.643168 1 0 2
## 1870 1.679286 0 1 3
## 1871 1.824829 1 1 4
## 1872 1.717556 0 1 4
## 1873 1.723369 1 0 3
## 1874 2.275961 1 1 4
## 1875 1.819341 0 0 3
## 1876 1.618641 1 1 3
## 1877 1.984943 0 1 2
## 1878 1.691153 0 1 4
## 1879 2.059126 0 1 1
## 1880 1.630951 0 1 4
## 1881 1.646208 0 0 1
## 1882 1.529706 1 1 4
## 1883 1.868154 0 0 1
## 1884 1.967232 1 1 3
## 1885 2.032240 0 0 NA
## 1886 1.873499 0 1 3
## 1887 2.056696 0 1 3
## 1888 1.737815 0 0 2
## 1889 2.039608 1 0 3
## 1890 1.400000 0 0 2
## 1891 2.601922 1 1 4
## 1892 2.269361 1 0 3
## 1893 1.574802 0 0 1
## 1894 1.774824 0 0 1
## 1895 1.992486 0 1 3
## 1896 1.915724 1 1 4
## 1897 1.902630 0 0 NA
## 1898 1.661325 0 1 3
## 1899 1.777639 1 0 3
## 1900 1.723369 1 1 5
## 1901 1.860108 0 1 3
## 1902 2.085665 1 1 4
## 1903 1.732051 1 0 3
## 1904 1.456022 1 1 4
## 1905 2.441311 0 1 2
## 1906 2.029778 1 0 3
## 1907 2.334524 0 0 2
## 1908 2.090454 1 0 2
## 1909 1.754993 0 1 3
## 1910 2.071232 1 0 3
## 1911 1.726268 1 1 5
## 1912 1.928730 1 0 2
## 1913 1.992486 1 1 4
## 1914 1.714643 0 1 3
## 1915 1.813836 1 0 4
## 1916 1.734935 0 1 4
## 1917 1.655295 0 1 2
## 1918 1.627882 0 1 4
## 1919 1.757840 1 1 4
## 1920 1.959592 0 1 2
## 1921 2.172556 1 0 2
## 1922 2.174856 0 1 1
## 1923 1.822087 0 0 2
## 1924 2.017424 0 0 NA
## 1925 2.002498 0 1 3
## 1926 2.422808 1 0 2
## 1927 1.763519 1 0 3
## 1928 1.345362 0 0 1
## 1929 1.400000 0 1 3
## 1930 2.027313 1 0 3
## 1931 1.881489 1 0 2
## 1932 2.251666 0 1 3
## 1933 1.760682 0 0 3
## 1934 1.931321 1 0 2
## 1935 2.071232 1 0 2
## 1936 2.044505 1 1 2
## 1937 1.584298 1 0 3
## 1938 2.549510 1 1 3
datatable(happyfin)happyfin %>% select_if(is.numeric) %>% glimpse()## Rows: 1,938
## Columns: 25
## $ FSD_ID <dbl> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, …
## $ happy_family <dbl> 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, …
## $ happy_social <dbl> 4, 5, 5, 4, 5, 4, 4, 5, 3, 5, 3, 4, 5, 5, 5, 4, 4, …
## $ happy_love <dbl> 5, 5, 5, 4, 5, 5, 5, 4, 2, 5, 5, 5, 5, 5, 5, 4, 5, …
## $ happy_income <dbl> 3, 5, 5, 5, 5, 5, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, …
## $ happy_wealth <dbl> 1, 3, 2, 3, 2, 2, 3, 2, 2, 2, 4, 3, 4, 1, 3, 3, 4, …
## $ happy_health <dbl> 5, 4, 5, 4, 5, 3, 5, 3, 5, 5, 5, 5, 5, 4, 5, 4, 5, …
## $ happy_likejob <dbl> 5, 4, 4, 4, 4, 3, 4, 4, 5, 5, 4, 4, 4, 5, 5, 5, 4, …
## $ happy_employed <dbl> 2, 3, 4, 4, 4, 4, 4, 4, 5, 4, 4, 5, 5, 4, 5, 5, 4, …
## $ happy_learn.expc <dbl> 5, 4, 4, 4, 5, 5, 4, 4, 2, 3, 4, 4, 2, 5, 4, 4, 4, …
## $ happy_time.hobby <dbl> 4, 3, 5, 4, 4, 5, 4, 4, 4, 3, 4, 3, 3, 5, 4, 4, 4, …
## $ happy_status <dbl> 2, 3, 2, 4, 4, 3, 3, 2, 3, 1, 3, 2, 2, 3, 3, 3, 3, …
## $ happy_influence <dbl> 3, 4, 2, 4, 5, 3, 3, 2, 4, 3, 3, 3, 3, 5, 4, 4, 3, …
## $ happy_religion <dbl> 5, 4, 1, 4, 2, 1, 3, 1, 2, 1, 3, 5, 1, 1, 1, 3, 3, …
## $ happy_nature <dbl> 5, 4, 5, 4, 5, 4, 5, 4, 5, 3, 4, 5, 5, 5, 3, 3, 4, …
## $ YOB <dbl> 1986, 1980, 1952, 1968, 1977, 1971, 1954, 1958, 195…
## $ relationship <dbl> 0.59, 1.03, 0.83, -0.74, 0.68, 0.49, 0.35, 0.45, -1…
## $ accomplishment <dbl> -0.94, 0.38, -0.64, 1.40, 1.17, 0.41, 0.33, -0.47, …
## $ autonomy <dbl> 1.23, 0.06, 0.31, 0.30, 1.29, 0.87, -0.13, -0.02, -…
## $ productivity <dbl> -1.71, -0.89, 0.20, -0.27, -0.45, -1.05, -0.15, -0.…
## $ mindfulness <dbl> 1.18, 0.23, 0.63, 0.45, 1.07, -0.05, 1.30, -0.27, 1…
## $ productivity_trans <dbl> 2.229350, 2.037155, 1.749286, 1.878829, 1.926136, 2…
## $ relationship_trans <dbl> 0.4329004, 0.5347594, 0.4830918, 0.2747253, 0.45045…
## $ mindfulness_trans <dbl> 1.462874, 1.757840, 1.640122, 1.694107, 1.500000, 1…
## $ attitude_emph_num <int> 3, 4, 4, 3, 4, 3, 3, 1, 3, 2, 4, 3, 3, 4, 4, 3, 4, …
happyfin %>% select_if(is.factor) %>% glimpse()## Rows: 1,938
## Columns: 18
## $ feel_happy <fct> very happy, very happy, Fairly happy, Not very happy…
## $ if_feel_happy <fct> happy, happy, happy, unhappy, happy, happy, unhappy,…
## $ alco <fct> No, No, No, No, No, No, No, No, No, No, No, No, No, …
## $ gender <fct> Male, Male, Male, Male, Male, Male, Male, Male, Fema…
## $ age <fct> 26 - 35 years, 36 - 45 years, Over 65 years, 46 - 55…
## $ resi_population <fct> "30,000 - 80,000 inhabitants", "Over 80,000 inhabita…
## $ resi_region <fct> Uusimaa, Uusimaa, Northern Ostrobothnia, Pirkanmaa, …
## $ employer <fct> "Publicly owned corporation", "Private (or own) busi…
## $ work_hour <fct> Full-time, Full-time, Full-time, Part-time, Full-tim…
## $ work_contract <fct> Permanent or indefinite contract, Permanent or indef…
## $ education_basic <fct> Upper secondary education (matriculation examination…
## $ education_prof <fct> "University degree (Bachelor's or Master's)", "Unive…
## $ occupation <fct> "Intermediate level employee (clerical, technical, a…
## $ industry <fct> "Private services", "Private services", "Public serv…
## $ union_if <fct> No, Yes, No, Yes, No, Yes, No, No, No, Yes, Yes, No,…
## $ party_vote <fct> Finns Party (PS), Social Democratic Party of Finland…
## $ social_class <fct> Middle class, Upper middle class, Middle class, Work…
## $ househould_income <fct> "10,000 - 20,000 euros/year", "Over 90,000 euros/yea…
fit0 <- happyfin %>%
glm(if_feel_happy ~ relationship + accomplishment + autonomy + productivity + mindfulness + gender + age, family = binomial, data = .)
table(happyfin$if_feel_happy)##
## unhappy happy
## 407 1531
summary(fit0)##
## Call:
## glm(formula = if_feel_happy ~ relationship + accomplishment +
## autonomy + productivity + mindfulness + gender + age, family = binomial,
## data = .)
##
## Deviance Residuals:
## Min 1Q Median 3Q Max
## -2.4110 0.4101 0.5938 0.7186 1.4775
##
## Coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) 1.34471 0.19505 6.894 5.42e-12 ***
## relationship 0.29083 0.05364 5.422 5.90e-08 ***
## accomplishment 0.08805 0.05846 1.506 0.13201
## autonomy 0.13225 0.05662 2.336 0.01951 *
## productivity 0.02217 0.05768 0.384 0.70076
## mindfulness 0.14406 0.05737 2.511 0.01204 *
## genderFemale 0.10856 0.11837 0.917 0.35909
## genderOther -0.90456 0.46289 -1.954 0.05068 .
## age26 - 35 years -0.48381 0.21396 -2.261 0.02374 *
## age36 - 45 years -0.15443 0.22891 -0.675 0.49990
## age46 - 55 years -0.18789 0.22746 -0.826 0.40877
## age56 - 65 years 0.09334 0.23526 0.397 0.69155
## ageOver 65 years 0.72146 0.24468 2.949 0.00319 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## (Dispersion parameter for binomial family taken to be 1)
##
## Null deviance: 1992.1 on 1937 degrees of freedom
## Residual deviance: 1891.9 on 1925 degrees of freedom
## AIC: 1917.9
##
## Number of Fisher Scoring iterations: 4
fit0 %>%
tidy(conf.int = T, exp = T) %>% datatable() %>% formatRound(columns = c(2:7), digits = 2)fit1 <- happyfin %>%
glm(if_feel_happy ~ relationship + accomplishment + autonomy + productivity + mindfulness + gender + age + alco + education_basic + education_prof + social_class + employer + work_hour + work_contract, family = binomial, data = .)
summary(fit1)##
## Call:
## glm(formula = if_feel_happy ~ relationship + accomplishment +
## autonomy + productivity + mindfulness + gender + age + alco +
## education_basic + education_prof + social_class + employer +
## work_hour + work_contract, family = binomial, data = .)
##
## Deviance Residuals:
## Min 1Q Median 3Q Max
## -2.5855 0.2921 0.4992 0.6866 1.7215
##
## Coefficients:
## Estimate
## (Intercept) 1.957875
## relationship 0.249180
## accomplishment -0.001925
## autonomy 0.156400
## productivity -0.074564
## mindfulness 0.166929
## genderFemale 0.294692
## genderOther -0.238245
## age26 - 35 years -0.843489
## age36 - 45 years -0.785459
## age46 - 55 years -0.739192
## age56 - 65 years -0.429709
## ageOver 65 years 0.418663
## alcoYes -0.543630
## education_basicPrimary school or lower secondary school -0.334806
## education_basicUpper secondary education (matriculation examination) -0.199228
## education_profVocational course, other short vocational training 0.592141
## education_profVocational school (upper secondary level) 0.426662
## education_profCollege level vocational education (post-secondary non-tertiary) 0.658773
## education_profUniversity of applied sciences degree (Bachelor's) 0.490934
## education_profUniversity degree (Bachelor's or Master's) 0.232138
## social_classLower middle class 0.363380
## social_classMiddle class 0.763928
## social_classUpper middle class 1.636086
## social_classUpper class 0.961790
## social_classDo not belong to any class 0.017159
## employerMunicipality, joint municipal authority -0.250958
## employerPublicly owned corporation -0.548803
## employerPrivate (or own) business -0.486999
## employerVoluntary or civic organisation/association -0.214158
## employerOther employer -0.390849
## work_hourHalf-time (around 20 hours a week) 0.010114
## work_hourPart-time -0.303987
## work_hourOther working hours -0.760341
## work_contractFixed-term -0.256222
## Std. Error
## (Intercept) 0.493261
## relationship 0.061832
## accomplishment 0.067259
## autonomy 0.066350
## productivity 0.066627
## mindfulness 0.066801
## genderFemale 0.138517
## genderOther 0.625053
## age26 - 35 years 0.270675
## age36 - 45 years 0.292131
## age46 - 55 years 0.294677
## age56 - 65 years 0.306176
## ageOver 65 years 0.336890
## alcoYes 0.299227
## education_basicPrimary school or lower secondary school 0.291457
## education_basicUpper secondary education (matriculation examination) 0.324464
## education_profVocational course, other short vocational training 0.348611
## education_profVocational school (upper secondary level) 0.243387
## education_profCollege level vocational education (post-secondary non-tertiary) 0.276795
## education_profUniversity of applied sciences degree (Bachelor's) 0.276293
## education_profUniversity degree (Bachelor's or Master's) 0.256864
## social_classLower middle class 0.207541
## social_classMiddle class 0.185804
## social_classUpper middle class 0.330693
## social_classUpper class 1.130698
## social_classDo not belong to any class 0.191331
## employerMunicipality, joint municipal authority 0.301515
## employerPublicly owned corporation 0.347262
## employerPrivate (or own) business 0.273545
## employerVoluntary or civic organisation/association 0.378246
## employerOther employer 0.368497
## work_hourHalf-time (around 20 hours a week) 0.595483
## work_hourPart-time 0.214987
## work_hourOther working hours 0.187831
## work_contractFixed-term 0.164794
## z value
## (Intercept) 3.969
## relationship 4.030
## accomplishment -0.029
## autonomy 2.357
## productivity -1.119
## mindfulness 2.499
## genderFemale 2.127
## genderOther -0.381
## age26 - 35 years -3.116
## age36 - 45 years -2.689
## age46 - 55 years -2.508
## age56 - 65 years -1.403
## ageOver 65 years 1.243
## alcoYes -1.817
## education_basicPrimary school or lower secondary school -1.149
## education_basicUpper secondary education (matriculation examination) -0.614
## education_profVocational course, other short vocational training 1.699
## education_profVocational school (upper secondary level) 1.753
## education_profCollege level vocational education (post-secondary non-tertiary) 2.380
## education_profUniversity of applied sciences degree (Bachelor's) 1.777
## education_profUniversity degree (Bachelor's or Master's) 0.904
## social_classLower middle class 1.751
## social_classMiddle class 4.111
## social_classUpper middle class 4.947
## social_classUpper class 0.851
## social_classDo not belong to any class 0.090
## employerMunicipality, joint municipal authority -0.832
## employerPublicly owned corporation -1.580
## employerPrivate (or own) business -1.780
## employerVoluntary or civic organisation/association -0.566
## employerOther employer -1.061
## work_hourHalf-time (around 20 hours a week) 0.017
## work_hourPart-time -1.414
## work_hourOther working hours -4.048
## work_contractFixed-term -1.555
## Pr(>|z|)
## (Intercept) 7.21e-05
## relationship 5.58e-05
## accomplishment 0.97716
## autonomy 0.01841
## productivity 0.26309
## mindfulness 0.01246
## genderFemale 0.03338
## genderOther 0.70308
## age26 - 35 years 0.00183
## age36 - 45 years 0.00717
## age46 - 55 years 0.01213
## age56 - 65 years 0.16048
## ageOver 65 years 0.21397
## alcoYes 0.06925
## education_basicPrimary school or lower secondary school 0.25067
## education_basicUpper secondary education (matriculation examination) 0.53920
## education_profVocational course, other short vocational training 0.08940
## education_profVocational school (upper secondary level) 0.07960
## education_profCollege level vocational education (post-secondary non-tertiary) 0.01731
## education_profUniversity of applied sciences degree (Bachelor's) 0.07559
## education_profUniversity degree (Bachelor's or Master's) 0.36613
## social_classLower middle class 0.07997
## social_classMiddle class 3.93e-05
## social_classUpper middle class 7.52e-07
## social_classUpper class 0.39498
## social_classDo not belong to any class 0.92854
## employerMunicipality, joint municipal authority 0.40523
## employerPublicly owned corporation 0.11402
## employerPrivate (or own) business 0.07502
## employerVoluntary or civic organisation/association 0.57127
## employerOther employer 0.28885
## work_hourHalf-time (around 20 hours a week) 0.98645
## work_hourPart-time 0.15737
## work_hourOther working hours 5.17e-05
## work_contractFixed-term 0.11999
##
## (Intercept) ***
## relationship ***
## accomplishment
## autonomy *
## productivity
## mindfulness *
## genderFemale *
## genderOther
## age26 - 35 years **
## age36 - 45 years **
## age46 - 55 years *
## age56 - 65 years
## ageOver 65 years
## alcoYes .
## education_basicPrimary school or lower secondary school
## education_basicUpper secondary education (matriculation examination)
## education_profVocational course, other short vocational training .
## education_profVocational school (upper secondary level) .
## education_profCollege level vocational education (post-secondary non-tertiary) *
## education_profUniversity of applied sciences degree (Bachelor's) .
## education_profUniversity degree (Bachelor's or Master's)
## social_classLower middle class .
## social_classMiddle class ***
## social_classUpper middle class ***
## social_classUpper class
## social_classDo not belong to any class
## employerMunicipality, joint municipal authority
## employerPublicly owned corporation
## employerPrivate (or own) business .
## employerVoluntary or civic organisation/association
## employerOther employer
## work_hourHalf-time (around 20 hours a week)
## work_hourPart-time
## work_hourOther working hours ***
## work_contractFixed-term
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## (Dispersion parameter for binomial family taken to be 1)
##
## Null deviance: 1725.5 on 1741 degrees of freedom
## Residual deviance: 1543.3 on 1707 degrees of freedom
## (196 observations deleted due to missingness)
## AIC: 1613.3
##
## Number of Fisher Scoring iterations: 5
fit1 %>%
tidy(conf.int = T, exp = T) %>% datatable() %>% formatRound(columns = c(2:7), digits = 2)glimpse(happyfin)## Rows: 1,938
## Columns: 46
## $ FSD_ID <dbl> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, …
## $ happy_family <dbl> 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, …
## $ happy_social <dbl> 4, 5, 5, 4, 5, 4, 4, 5, 3, 5, 3, 4, 5, 5, 5, 4, 4, …
## $ happy_love <dbl> 5, 5, 5, 4, 5, 5, 5, 4, 2, 5, 5, 5, 5, 5, 5, 4, 5, …
## $ happy_income <dbl> 3, 5, 5, 5, 5, 5, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, …
## $ happy_wealth <dbl> 1, 3, 2, 3, 2, 2, 3, 2, 2, 2, 4, 3, 4, 1, 3, 3, 4, …
## $ happy_health <dbl> 5, 4, 5, 4, 5, 3, 5, 3, 5, 5, 5, 5, 5, 4, 5, 4, 5, …
## $ happy_likejob <dbl> 5, 4, 4, 4, 4, 3, 4, 4, 5, 5, 4, 4, 4, 5, 5, 5, 4, …
## $ happy_employed <dbl> 2, 3, 4, 4, 4, 4, 4, 4, 5, 4, 4, 5, 5, 4, 5, 5, 4, …
## $ happy_learn.expc <dbl> 5, 4, 4, 4, 5, 5, 4, 4, 2, 3, 4, 4, 2, 5, 4, 4, 4, …
## $ happy_time.hobby <dbl> 4, 3, 5, 4, 4, 5, 4, 4, 4, 3, 4, 3, 3, 5, 4, 4, 4, …
## $ happy_status <dbl> 2, 3, 2, 4, 4, 3, 3, 2, 3, 1, 3, 2, 2, 3, 3, 3, 3, …
## $ happy_influence <dbl> 3, 4, 2, 4, 5, 3, 3, 2, 4, 3, 3, 3, 3, 5, 4, 4, 3, …
## $ happy_religion <dbl> 5, 4, 1, 4, 2, 1, 3, 1, 2, 1, 3, 5, 1, 1, 1, 3, 3, …
## $ happy_nature <dbl> 5, 4, 5, 4, 5, 4, 5, 4, 5, 3, 4, 5, 5, 5, 3, 3, 4, …
## $ feel_happy <fct> very happy, very happy, Fairly happy, Not very happ…
## $ if_feel_happy <fct> happy, happy, happy, unhappy, happy, happy, unhappy…
## $ alco <fct> No, No, No, No, No, No, No, No, No, No, No, No, No,…
## $ alco_family_state <chr> "non_alco_nonalcofamily", "non_alco_nonalcofamily",…
## $ gender <fct> Male, Male, Male, Male, Male, Male, Male, Male, Fem…
## $ age <fct> 26 - 35 years, 36 - 45 years, Over 65 years, 46 - 5…
## $ resi_population <fct> "30,000 - 80,000 inhabitants", "Over 80,000 inhabit…
## $ resi_region <fct> Uusimaa, Uusimaa, Northern Ostrobothnia, Pirkanmaa,…
## $ employer <fct> "Publicly owned corporation", "Private (or own) bus…
## $ work_hour <fct> Full-time, Full-time, Full-time, Part-time, Full-ti…
## $ work_contract <fct> Permanent or indefinite contract, Permanent or inde…
## $ education_basic <fct> Upper secondary education (matriculation examinatio…
## $ education_prof <fct> "University degree (Bachelor's or Master's)", "Univ…
## $ occupation <fct> "Intermediate level employee (clerical, technical, …
## $ industry <fct> "Private services", "Private services", "Public ser…
## $ union_if <fct> No, Yes, No, Yes, No, Yes, No, No, No, Yes, Yes, No…
## $ party_vote <fct> Finns Party (PS), Social Democratic Party of Finlan…
## $ social_class <fct> Middle class, Upper middle class, Middle class, Wor…
## $ househould_income <fct> "10,000 - 20,000 euros/year", "Over 90,000 euros/ye…
## $ YOB <dbl> 1986, 1980, 1952, 1968, 1977, 1971, 1954, 1958, 195…
## $ relationship <dbl> 0.59, 1.03, 0.83, -0.74, 0.68, 0.49, 0.35, 0.45, -1…
## $ accomplishment <dbl> -0.94, 0.38, -0.64, 1.40, 1.17, 0.41, 0.33, -0.47, …
## $ autonomy <dbl> 1.23, 0.06, 0.31, 0.30, 1.29, 0.87, -0.13, -0.02, -…
## $ productivity <dbl> -1.71, -0.89, 0.20, -0.27, -0.45, -1.05, -0.15, -0.…
## $ mindfulness <dbl> 1.18, 0.23, 0.63, 0.45, 1.07, -0.05, 1.30, -0.27, 1…
## $ productivity_trans <dbl> 2.229350, 2.037155, 1.749286, 1.878829, 1.926136, 2…
## $ relationship_trans <dbl> 0.4329004, 0.5347594, 0.4830918, 0.2747253, 0.45045…
## $ mindfulness_trans <dbl> 1.462874, 1.757840, 1.640122, 1.694107, 1.500000, 1…
## $ if_autonomy <chr> "1", "1", "1", "1", "1", "1", "0", "0", "0", "0", "…
## $ if_accomplishment <chr> "0", "1", "0", "1", "1", "1", "1", "0", "1", "0", "…
## $ attitude_emph_num <int> 3, 4, 4, 3, 4, 3, 3, 1, 3, 2, 4, 3, 3, 4, 4, 3, 4, …
with(summary(fit1), 1 - deviance/null.deviance)## [1] 0.1055821
get_labels(happyfin$education_prof)## [1] "No vocational education"
## [2] "Vocational course, other short vocational training"
## [3] "Vocational school (upper secondary level)"
## [4] "College level vocational education (post-secondary non-tertiary)"
## [5] "University of applied sciences degree (Bachelor's)"
## [6] "University degree (Bachelor's or Master's)"
dependent <- "if_feel_happy"
explanatory <- c("relationship", "accomplishment", "autonomy", "productivity", "mindfulness", "gender", "age", "alco", "education_basic", "education_prof", "social_class", "employer", "work_contract", "work_hour")
happyfin %>% summary_factorlist(dependent, explanatory, p = T) %>% datatable()?finalfit
glimpse(happyfin)## Rows: 1,938
## Columns: 46
## $ FSD_ID <dbl> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, …
## $ happy_family <dbl> 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, …
## $ happy_social <dbl> 4, 5, 5, 4, 5, 4, 4, 5, 3, 5, 3, 4, 5, 5, 5, 4, 4, …
## $ happy_love <dbl> 5, 5, 5, 4, 5, 5, 5, 4, 2, 5, 5, 5, 5, 5, 5, 4, 5, …
## $ happy_income <dbl> 3, 5, 5, 5, 5, 5, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, …
## $ happy_wealth <dbl> 1, 3, 2, 3, 2, 2, 3, 2, 2, 2, 4, 3, 4, 1, 3, 3, 4, …
## $ happy_health <dbl> 5, 4, 5, 4, 5, 3, 5, 3, 5, 5, 5, 5, 5, 4, 5, 4, 5, …
## $ happy_likejob <dbl> 5, 4, 4, 4, 4, 3, 4, 4, 5, 5, 4, 4, 4, 5, 5, 5, 4, …
## $ happy_employed <dbl> 2, 3, 4, 4, 4, 4, 4, 4, 5, 4, 4, 5, 5, 4, 5, 5, 4, …
## $ happy_learn.expc <dbl> 5, 4, 4, 4, 5, 5, 4, 4, 2, 3, 4, 4, 2, 5, 4, 4, 4, …
## $ happy_time.hobby <dbl> 4, 3, 5, 4, 4, 5, 4, 4, 4, 3, 4, 3, 3, 5, 4, 4, 4, …
## $ happy_status <dbl> 2, 3, 2, 4, 4, 3, 3, 2, 3, 1, 3, 2, 2, 3, 3, 3, 3, …
## $ happy_influence <dbl> 3, 4, 2, 4, 5, 3, 3, 2, 4, 3, 3, 3, 3, 5, 4, 4, 3, …
## $ happy_religion <dbl> 5, 4, 1, 4, 2, 1, 3, 1, 2, 1, 3, 5, 1, 1, 1, 3, 3, …
## $ happy_nature <dbl> 5, 4, 5, 4, 5, 4, 5, 4, 5, 3, 4, 5, 5, 5, 3, 3, 4, …
## $ feel_happy <fct> very happy, very happy, Fairly happy, Not very happ…
## $ if_feel_happy <fct> happy, happy, happy, unhappy, happy, happy, unhappy…
## $ alco <fct> No, No, No, No, No, No, No, No, No, No, No, No, No,…
## $ alco_family_state <chr> "non_alco_nonalcofamily", "non_alco_nonalcofamily",…
## $ gender <fct> Male, Male, Male, Male, Male, Male, Male, Male, Fem…
## $ age <fct> 26 - 35 years, 36 - 45 years, Over 65 years, 46 - 5…
## $ resi_population <fct> "30,000 - 80,000 inhabitants", "Over 80,000 inhabit…
## $ resi_region <fct> Uusimaa, Uusimaa, Northern Ostrobothnia, Pirkanmaa,…
## $ employer <fct> "Publicly owned corporation", "Private (or own) bus…
## $ work_hour <fct> Full-time, Full-time, Full-time, Part-time, Full-ti…
## $ work_contract <fct> Permanent or indefinite contract, Permanent or inde…
## $ education_basic <fct> Upper secondary education (matriculation examinatio…
## $ education_prof <fct> "University degree (Bachelor's or Master's)", "Univ…
## $ occupation <fct> "Intermediate level employee (clerical, technical, …
## $ industry <fct> "Private services", "Private services", "Public ser…
## $ union_if <fct> No, Yes, No, Yes, No, Yes, No, No, No, Yes, Yes, No…
## $ party_vote <fct> Finns Party (PS), Social Democratic Party of Finlan…
## $ social_class <fct> Middle class, Upper middle class, Middle class, Wor…
## $ househould_income <fct> "10,000 - 20,000 euros/year", "Over 90,000 euros/ye…
## $ YOB <dbl> 1986, 1980, 1952, 1968, 1977, 1971, 1954, 1958, 195…
## $ relationship <dbl> 0.59, 1.03, 0.83, -0.74, 0.68, 0.49, 0.35, 0.45, -1…
## $ accomplishment <dbl> -0.94, 0.38, -0.64, 1.40, 1.17, 0.41, 0.33, -0.47, …
## $ autonomy <dbl> 1.23, 0.06, 0.31, 0.30, 1.29, 0.87, -0.13, -0.02, -…
## $ productivity <dbl> -1.71, -0.89, 0.20, -0.27, -0.45, -1.05, -0.15, -0.…
## $ mindfulness <dbl> 1.18, 0.23, 0.63, 0.45, 1.07, -0.05, 1.30, -0.27, 1…
## $ productivity_trans <dbl> 2.229350, 2.037155, 1.749286, 1.878829, 1.926136, 2…
## $ relationship_trans <dbl> 0.4329004, 0.5347594, 0.4830918, 0.2747253, 0.45045…
## $ mindfulness_trans <dbl> 1.462874, 1.757840, 1.640122, 1.694107, 1.500000, 1…
## $ if_autonomy <chr> "1", "1", "1", "1", "1", "1", "0", "0", "0", "0", "…
## $ if_accomplishment <chr> "0", "1", "0", "1", "1", "1", "1", "0", "1", "0", "…
## $ attitude_emph_num <int> 3, 4, 4, 3, 4, 3, 3, 1, 3, 2, 4, 3, 3, 4, 4, 3, 4, …
#happyScores <- happyScores %>% mutate(peace_trans = log(peace),
# relationship_trans = log(relationship))
#happyScores %>%
# pivot_longer(c(accomplishment,autonomy, peace_trans, relationship_trans, work_health), names_to = "factors", values_to = "scores") %>%
# ggplot(aes(x = scores, fill = factors)) +
# geom_histogram() +
# facet_wrap(~factors) +
# xlim(-6,6)## Factor Analysis using method = pa
## Call: fa(r = happyscale[, -1], nfactors = 2, rotate = "oblimin", scores = "regression",
## fm = "pa")
## Standardized loadings (pattern matrix) based upon correlation matrix
## PA1 PA2 h2 u2 com
## happy_family -0.07 0.75 0.536 0.46 1.0
## happy_social 0.11 0.60 0.413 0.59 1.1
## happy_love 0.02 0.68 0.468 0.53 1.0
## happy_income 0.27 0.24 0.174 0.83 2.0
## happy_wealth 0.45 -0.10 0.186 0.81 1.1
## happy_health 0.28 0.24 0.178 0.82 1.9
## happy_likejob 0.55 0.15 0.375 0.63 1.1
## happy_employed 0.40 0.12 0.205 0.79 1.2
## happy_learn.expc 0.53 0.09 0.318 0.68 1.1
## happy_time.hobby 0.40 0.14 0.217 0.78 1.3
## happy_status 0.63 -0.16 0.356 0.64 1.1
## happy_influence 0.51 -0.04 0.252 0.75 1.0
## happy_religion 0.12 0.10 0.032 0.97 1.9
## happy_nature 0.19 0.20 0.101 0.90 2.0
##
## PA1 PA2
## SS loadings 2.07 1.74
## Proportion Var 0.15 0.12
## Cumulative Var 0.15 0.27
## Proportion Explained 0.54 0.46
## Cumulative Proportion 0.54 1.00
##
## With factor correlations of
## PA1 PA2
## PA1 1.0 0.3
## PA2 0.3 1.0
##
## Mean item complexity = 1.3
## Test of the hypothesis that 2 factors are sufficient.
##
## The degrees of freedom for the null model are 91 and the objective function was 2.76 with Chi Square of 5340.53
## The degrees of freedom for the model are 64 and the objective function was 0.72
##
## The root mean square of the residuals (RMSR) is 0.07
## The df corrected root mean square of the residuals is 0.08
##
## The harmonic number of observations is 1938 with the empirical chi square 1645.87 with prob < 1.2e-301
## The total number of observations was 1938 with Likelihood Chi Square = 1381.59 with prob < 1.3e-246
##
## Tucker Lewis Index of factoring reliability = 0.643
## RMSEA index = 0.103 and the 90 % confidence intervals are 0.098 0.108
## BIC = 897.15
## Fit based upon off diagonal values = 0.9
## Measures of factor score adequacy
## PA1 PA2
## Correlation of (regression) scores with factors 0.86 0.87
## Multiple R square of scores with factors 0.74 0.76
## Minimum correlation of possible factor scores 0.49 0.51
##
## Loadings:
## PA1 PA2
## happy_likejob 0.549
## happy_learn.expc 0.531
## happy_status 0.625
## happy_influence 0.513
## happy_family 0.749
## happy_social 0.601
## happy_love 0.677
## happy_income
## happy_wealth 0.451
## happy_health
## happy_employed 0.404
## happy_time.hobby 0.401
## happy_religion
## happy_nature
##
## PA1 PA2
## SS loadings 1.988 1.651
## Proportion Var 0.142 0.118
## Cumulative Var 0.142 0.260
## Factor Analysis using method = pa
## Call: fa(r = happyscale[, -1], nfactors = 3, rotate = "oblimin", scores = "regression",
## fm = "pa")
## Standardized loadings (pattern matrix) based upon correlation matrix
## PA1 PA2 PA3 h2 u2 com
## happy_family -0.08 0.80 0.00 0.610 0.39 1.0
## happy_social 0.15 0.57 0.00 0.404 0.60 1.1
## happy_love 0.05 0.66 0.00 0.465 0.53 1.0
## happy_income 0.23 0.24 0.09 0.170 0.83 2.3
## happy_wealth -0.09 0.04 0.74 0.511 0.49 1.0
## happy_health 0.26 0.22 0.08 0.176 0.82 2.1
## happy_likejob 0.44 0.14 0.20 0.359 0.64 1.6
## happy_employed 0.26 0.14 0.20 0.194 0.81 2.4
## happy_learn.expc 0.69 -0.03 -0.01 0.454 0.55 1.0
## happy_time.hobby 0.52 0.05 -0.02 0.284 0.72 1.0
## happy_status 0.17 -0.06 0.64 0.497 0.50 1.2
## happy_influence 0.43 -0.06 0.18 0.253 0.75 1.4
## happy_religion 0.12 0.09 0.03 0.033 0.97 1.9
## happy_nature 0.44 0.09 -0.20 0.201 0.80 1.5
##
## PA1 PA2 PA3
## SS loadings 1.74 1.68 1.19
## Proportion Var 0.12 0.12 0.09
## Cumulative Var 0.12 0.24 0.33
## Proportion Explained 0.38 0.36 0.26
## Cumulative Proportion 0.38 0.74 1.00
##
## With factor correlations of
## PA1 PA2 PA3
## PA1 1.00 0.31 0.34
## PA2 0.31 1.00 0.12
## PA3 0.34 0.12 1.00
##
## Mean item complexity = 1.5
## Test of the hypothesis that 3 factors are sufficient.
##
## The degrees of freedom for the null model are 91 and the objective function was 2.76 with Chi Square of 5340.53
## The degrees of freedom for the model are 52 and the objective function was 0.46
##
## The root mean square of the residuals (RMSR) is 0.05
## The df corrected root mean square of the residuals is 0.07
##
## The harmonic number of observations is 1938 with the empirical chi square 1012.98 with prob < 3e-178
## The total number of observations was 1938 with Likelihood Chi Square = 895.82 with prob < 3.9e-154
##
## Tucker Lewis Index of factoring reliability = 0.718
## RMSEA index = 0.092 and the 90 % confidence intervals are 0.086 0.097
## BIC = 502.21
## Fit based upon off diagonal values = 0.94
## Measures of factor score adequacy
## PA1 PA2 PA3
## Correlation of (regression) scores with factors 0.85 0.88 0.83
## Multiple R square of scores with factors 0.72 0.77 0.69
## Minimum correlation of possible factor scores 0.45 0.54 0.39
##
## Loadings:
## PA1 PA2 PA3
## happy_learn.expc 0.685
## happy_time.hobby 0.520
## happy_family 0.802
## happy_social 0.574
## happy_love 0.664
## happy_wealth 0.736
## happy_status 0.640
## happy_income
## happy_health
## happy_likejob 0.443
## happy_employed
## happy_influence 0.429
## happy_religion
## happy_nature 0.436
##
## PA1 PA2 PA3
## SS loadings 1.583 1.587 1.119
## Proportion Var 0.113 0.113 0.080
## Cumulative Var 0.113 0.226 0.306
## Factor Analysis using method = pa
## Call: fa(r = happyscale[, -1], nfactors = 4, rotate = "oblimin", scores = "regression",
## fm = "pa")
## Standardized loadings (pattern matrix) based upon correlation matrix
## PA3 PA2 PA1 PA4 h2 u2 com
## happy_family 0.79 0.00 -0.10 0.03 0.607 0.3931 1.0
## happy_social 0.59 0.01 0.14 0.02 0.419 0.5809 1.1
## happy_love 0.70 0.02 0.06 -0.04 0.505 0.4949 1.0
## happy_income 0.13 -0.06 0.05 0.46 0.269 0.7311 1.2
## happy_wealth 0.01 0.47 -0.14 0.25 0.302 0.6980 1.7
## happy_health 0.14 -0.03 0.12 0.34 0.215 0.7852 1.6
## happy_likejob 0.04 0.06 0.25 0.48 0.423 0.5770 1.6
## happy_employed -0.03 0.01 -0.02 0.70 0.467 0.5332 1.0
## happy_learn.expc -0.02 0.02 0.69 0.06 0.505 0.4950 1.0
## happy_time.hobby 0.07 0.01 0.51 0.04 0.304 0.6957 1.1
## happy_status 0.01 1.00 0.02 -0.02 1.002 -0.0022 1.0
## happy_influence -0.01 0.26 0.43 -0.04 0.298 0.7015 1.7
## happy_religion 0.12 0.09 0.09 -0.02 0.039 0.9613 2.9
## happy_nature 0.11 -0.12 0.39 0.02 0.177 0.8230 1.4
##
## PA3 PA2 PA1 PA4
## SS loadings 1.61 1.36 1.32 1.23
## Proportion Var 0.12 0.10 0.09 0.09
## Cumulative Var 0.12 0.21 0.31 0.40
## Proportion Explained 0.29 0.25 0.24 0.22
## Cumulative Proportion 0.29 0.54 0.78 1.00
##
## With factor correlations of
## PA3 PA2 PA1 PA4
## PA3 1.00 0.09 0.29 0.32
## PA2 0.09 1.00 0.31 0.26
## PA1 0.29 0.31 1.00 0.37
## PA4 0.32 0.26 0.37 1.00
##
## Mean item complexity = 1.4
## Test of the hypothesis that 4 factors are sufficient.
##
## The degrees of freedom for the null model are 91 and the objective function was 2.76 with Chi Square of 5340.53
## The degrees of freedom for the model are 41 and the objective function was 0.21
##
## The root mean square of the residuals (RMSR) is 0.03
## The df corrected root mean square of the residuals is 0.05
##
## The harmonic number of observations is 1938 with the empirical chi square 420.71 with prob < 1.8e-64
## The total number of observations was 1938 with Likelihood Chi Square = 409.65 with prob < 2.7e-62
##
## Tucker Lewis Index of factoring reliability = 0.844
## RMSEA index = 0.068 and the 90 % confidence intervals are 0.062 0.074
## BIC = 99.31
## Fit based upon off diagonal values = 0.97
##
## Loadings:
## PA3 PA2 PA1 PA4
## happy_family 0.793
## happy_social 0.588
## happy_love 0.701
## happy_status 0.998
## happy_learn.expc 0.686
## happy_time.hobby 0.508
## happy_employed 0.699
## happy_income 0.455
## happy_wealth 0.472
## happy_health 0.343
## happy_likejob 0.475
## happy_influence 0.426
## happy_religion
## happy_nature 0.390
##
## PA3 PA2 PA1 PA4
## SS loadings 1.537 1.320 1.200 1.113
## Proportion Var 0.110 0.094 0.086 0.080
## Cumulative Var 0.110 0.204 0.290 0.369
##
## Pearson's product-moment correlation
##
## data: a$feel_happy_numeric and a$mindfulness
## t = 4.2814, df = 1936, p-value = 1.948e-05
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
## 0.05254649 0.14076624
## sample estimates:
## cor
## 0.09684658
## fl_h_ rltns accmp atnmy prdct mndfl
## feel_happy_numeric 1.00
## relationship 0.19 1.00
## accomplishment 0.03 0.00 1.00
## autonomy 0.09 0.00 0.00 1.00
## productivity 0.03 0.00 0.00 0.00 1.00
## mindfulness 0.10 0.00 0.00 0.00 0.00 1.00
Based on the histograms above, it is found that productivity, mindfulness and relationship might
happyfin %>% filter(!gender == "Other") %>%
select(relationship:mindfulness, feel_happy, if_feel_happy, gender) %>%
pivot_longer(relationship:mindfulness,
names_to = "factors",
values_to = "scores") %>%
group_by(if_feel_happy, factors, gender) %>%
summarise(mean.score = mean(scores), sd.score = sd(scores)) %>%
ggplot(aes(x = factors, y = mean.score, fill = gender)) +
geom_bar(stat = "identity", color = "black", position=position_dodge(1))+
geom_errorbar(aes(ymin = mean.score-sd.score, ymax = mean.score+sd.score), width = .3, position=position_dodge(1))+
facet_wrap(~if_feel_happy)#generate the variable
emph_type <- happyfin %>%
select(1, relationship:mindfulness) %>%
pivot_longer(relationship:mindfulness,
names_to = "factors",
values_to = "scores") %>%
group_by(FSD_ID) %>%
filter(scores == max(scores))
emph_type$scores <- NULL #delete the column "scores".
happyfin2 <- left_join(happyfin, emph_type) #join the data sets
happyfin2 <- happyfin2 %>% rename("attitude_emph_type" = "factors") #rename it
#check the new variable's relation with perceived happiness
happyfin2 %>%
ggplot(aes(x = attitude_emph_type, fill = feel_happy)) +
geom_bar (position = "fill")happyfin %>% filter(!gender == "Other") %>%
select(relationship:mindfulness, feel_happy, if_feel_happy, gender) %>%
pivot_longer(relationship:mindfulness,
names_to = "factors",
values_to = "scores") %>%
ggplot(aes(x= feel_happy, y = scores, fill = feel_happy))+
geom_dotplot(binaxis = "y",
stackdir = "center",
dotsize = 0.3,
position = position_jitter(0.01),
width = 0.5,
method = "histodot") +
facet_wrap(~factors, ncol = 2)+
stat_summary(fun.data = "mean_sdl",
fun.args = list(mult=1),
geom = "pointrange",
color = "red",
width = 0.2)+
theme(axis.text.x = element_text(angle =25),
legend.position ="none")?geom_dotplot
?stat_summary
?position_jitter